From: Olof-Joachim Frahm Date: Sun, 18 Jan 2015 14:56:17 +0000 (+0000) Subject: Update Makefile with new filename. X-Git-Tag: 0.1.0~2^2~17 X-Git-Url: http://repo.macrolet.net/gitweb/?p=crypto-install.git;a=commitdiff_plain;h=f74ad7525795a8088f06bf800440f1dbf4d95877 Update Makefile with new filename. --- diff --git a/Makefile b/Makefile index abcce2f..570aa8b 100644 --- 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