1 2 3 4 5 6 7 8 9 10 11 12 13 14
|
Description: Add clean target to upstream Makefile
Author: Andreas Tille <tille@debian.org>
Last-Update Mon, 02 May 2016 15:37:17 +0200
--- paml.orig/src/Makefile
+++ paml/src/Makefile
@@ -25,3 +25,7 @@
$(CC) $(CPPFLAGS) $(CFLAGS) -o $@ yn00.c tools.c $(LIBS)
chi2 : chi2.c
$(CC) $(CPPFLAGS) $(CFLAGS) -o $@ chi2.c $(LIBS)
+
+clean:
+ rm -f $(PRGS) infinitesites
+.PHONY: clean
|