aboutsummaryrefslogtreecommitdiff
path: root/Makefile.in
diff options
context:
space:
mode:
authorJoseph Hunkeler <jhunkeler@gmail.com>2021-08-16 12:01:23 -0400
committerJoseph Hunkeler <jhunkeler@gmail.com>2021-08-16 12:01:23 -0400
commit1b6f29540ab72fa4e078a11d8f7d491a10a7d5ad (patch)
tree9b45023d79616e25a4f7a4cee3b19f4a13acb892 /Makefile.in
parent9e3fbd612bd63b5da75b0d022b5662dd868673f9 (diff)
downloadmoog-1b6f29540ab72fa4e078a11d8f7d491a10a7d5ad.tar.gz
Improved build:HEADmaster
* Add distclean target * clean target does not remove generated files * Add check_lib to configure script * Report state of libraries at the end of the configuration pass
Diffstat (limited to 'Makefile.in')
-rw-r--r--Makefile.in7
1 files changed, 6 insertions, 1 deletions
diff --git a/Makefile.in b/Makefile.in
index fbf099f..4cc802e 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -75,5 +75,10 @@ install: all
install -m755 $$x $(DESTDIR)$(DATADIR);\
done;
+.PHONY: clean distclean
+distclean: clean
+ -rm -f Makefile Moog.f
+
clean:
- -rm -f *.o MOOG MOOGSILENT Makefile Moog.f
+ -rm -f *.o MOOG MOOGSILENT
+