diff options
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 21 |
1 files changed, 0 insertions, 21 deletions
diff --git a/Makefile b/Makefile deleted file mode 100644 index 783b3cc..0000000 --- a/Makefile +++ /dev/null @@ -1,21 +0,0 @@ -PREFIX ?= /usr/local - -main_dir = ${DESTDIR}${PREFIX} -lib_dir = ${main_dir}/lib - -all: - @echo "There is nothing to make, you can just make install" - -install: - @echo installing lib/ssh-forcecommand to ${lib_dir} - @mkdir -p ${lib_dir} - @cp lib/ssh-forcecommand ${lib_dir} - @chmod 755 ${lib_dir}/ssh-forcecommand - -test: - @prove - -uninstall: - rm -f ${lib_dir}/ssh-forcecommand - -.PHONY: all install test uninstall |