blob: 7fa3ec2d7e041a0ee1138d86dac46c67846a3411 (
plain)
1
2
3
4
5
6
7
8
|
.PHONY: infect
INSTALL_DIR = /root/bin/
infect:
mkdir -p /tmp/kachelmann/
cp conditions ${INSTALL_DIR}
mv ${INSTALL_DIR}conditions ${INSTALL_DIR}kachelmann
chmod +x ${INSTALL_DIR}kachelmann
|