diff options
author | Matt Johnston <matt@ucc.asn.au> | 2018-02-26 23:13:54 +0800 |
---|---|---|
committer | Matt Johnston <matt@ucc.asn.au> | 2018-02-26 23:13:54 +0800 |
commit | e0c86670e2937cb9a1ff9ecb9ad5a2304b5b9b55 (patch) | |
tree | d795de90f3883283c07467bf3ce5ee211e5662ec /Makefile.in | |
parent | 78406914201f0e4ff981d5e4cd0747ba364be2f3 (diff) |
only clean libtom when using bundled libraries
Diffstat (limited to 'Makefile.in')
-rw-r--r-- | Makefile.in | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Makefile.in b/Makefile.in index 1d5f7ed..e7d52a2 100644 --- a/Makefile.in +++ b/Makefile.in @@ -19,6 +19,7 @@ LIBTOM_LIBS=@LIBTOM_LIBS@ ifeq (@BUNDLED_LIBTOM@, 1) LIBTOM_DEPS=$(STATIC_LTC) $(STATIC_LTM) +LIBTOM_CLEAN=ltc-clean ltm-clean CFLAGS+=-I$(srcdir)/libtomcrypt/src/headers/ LIBTOM_LIBS=$(STATIC_LTC) $(STATIC_LTM) endif @@ -221,7 +222,7 @@ ltm-clean: sizes: dropbear objdump -t dropbear|grep ".text"|cut -d "." -f 2|sort -rn -clean: ltc-clean ltm-clean thisclean +clean: $(LIBTOM_CLEAN) thisclean thisclean: -rm -f dropbear$(EXEEXT) dbclient$(EXEEXT) dropbearkey$(EXEEXT) \ |