diff options
author | Rob Austein <sra@hactrn.net> | 2016-06-23 14:31:40 -0400 |
---|---|---|
committer | Rob Austein <sra@hactrn.net> | 2016-06-23 14:31:40 -0400 |
commit | 0e1cc8d4e6ca53222d448df5e421c5d33383022f (patch) | |
tree | 8a2a5b337c58913c0cc1c6ff9acb5b88f049e5a3 | |
parent | 6b70440fa95c969e020a7b153b4975e7bf400494 (diff) | |
parent | 7bbbb682d2557d7aeba63709a27838b36055db26 (diff) |
Merge branch 'master' of https://git.cryptech.is/sw/thirdparty/libtfm.git
-rw-r--r-- | GNUmakefile | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/GNUmakefile b/GNUmakefile index 2824b68..5d1fbde 100644 --- a/GNUmakefile +++ b/GNUmakefile @@ -47,22 +47,21 @@ all: ${TARGETS} clean: rm -f ${TARGETS} $(notdir ${HDR}.tmp) - cd ${REPO}; git clean -dxf + cd ${REPO}; ${MAKE} clean distclean: clean - git submodule deinit ${REPO} rm -f TAGS ${HDR}: git submodule update --init ${LIB}: ${HDR} + cd ${REPO}; ${MAKE} clean ifeq "" "${SHA256SUM}" @echo "Couldn't find sha256sum, not verifying distribution checksums" else ${SHA256SUM} --check Checksums endif - cd ${REPO}; git clean -dxf cd ${REPO}; ${MAKE} CFLAGS='${CFLAGS}' $(notdir ${HDR}): ${HDR} |