From f74ad7525795a8088f06bf800440f1dbf4d95877 Mon Sep 17 00:00:00 2001 From: Olof-Joachim Frahm Date: Sun, 18 Jan 2015 14:56:17 +0000 Subject: [PATCH] Update Makefile with new filename. --- Makefile | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) 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 -- 1.7.10.4