aboutsummaryrefslogtreecommitdiffstats
path: root/crypto/jpake/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'crypto/jpake/Makefile')
-rw-r--r--crypto/jpake/Makefile7
1 files changed, 7 insertions, 0 deletions
diff --git a/crypto/jpake/Makefile b/crypto/jpake/Makefile
index d508c977a9..ffc519895d 100644
--- a/crypto/jpake/Makefile
+++ b/crypto/jpake/Makefile
@@ -28,6 +28,13 @@ depend:
@[ -n "$(MAKEDEPEND)" ] # should be set by upper Makefile...
$(MAKEDEPEND) -- $(CFLAG) $(INCLUDES) $(DEPFLAG) -- $(PROGS) $(LIBSRC)
+dclean:
+ $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new
+ mv -f Makefile.new $(MAKEFILE)
+
+clean:
+ rm -f *.s *.o *.obj des lib tags core .pure .nfs* *.old *.bak fluff
+
jpaketest: top jpaketest.c $(LIB)
$(CC) $(CFLAGS) -Wall -Werror -g -o jpaketest jpaketest.c $(LIB)
# DO NOT DELETE THIS LINE -- make depend depends on it.