Update Makefile with new filename.
authorOlof-Joachim Frahm <olof@macrolet.net>
Sun, 18 Jan 2015 14:56:17 +0000 (14:56 +0000)
committerOlof-Joachim Frahm <olof@macrolet.net>
Sun, 18 Jan 2015 14:56:28 +0000 (14:56 +0000)
Makefile

index abcce2f..570aa8b 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -1,7 +1,7 @@
-all: check test build/crypto-install.py
+all: check test build/crypto-install
 
-run: build/crypto-install.py
-       build/crypto-install.py
+run: build/crypto-install
+       build/crypto-install
 
 check:
        pep8 .
@@ -12,13 +12,13 @@ test:
 build:
        mkdir build
 
-build/crypto-install.py: crypto-install.py build
+build/crypto-install: crypto-install build
        sed \
                -e "s/GIT-TAG/`git describe --abbrev=0 --tags`/g" \
                -e "s/GIT-COMMIT/`git rev-parse --short=7 HEAD`/g" \
                -e "s/GIT-BRANCH/`git rev-parse --abbrev-ref HEAD`/g" \
-               crypto-install.py > build/crypto-install.py
-       chmod a+rx build/crypto-install.py
+               crypto-install > build/crypto-install
+       chmod a+rx build/crypto-install
 
 clean:
        rm -rf build