summaryrefslogtreecommitdiff
path: root/makefiles/gmake/top.mk
diff options
context:
space:
mode:
Diffstat (limited to 'makefiles/gmake/top.mk')
-rw-r--r--makefiles/gmake/top.mk7
1 files changed, 7 insertions, 0 deletions
diff --git a/makefiles/gmake/top.mk b/makefiles/gmake/top.mk
index c276758..810bedc 100644
--- a/makefiles/gmake/top.mk
+++ b/makefiles/gmake/top.mk
@@ -12,6 +12,8 @@
# - target 'doc'
# - target 'dist'
# - target 'help'
+# - target 'install'
+# - target 'uninstall'
-include makefiles/gmake/platform.mk
@@ -37,6 +39,11 @@ install:
@test -z "$(SUBDIRS)" || ( set -e; for d in $(SUBDIRS)""; do \
(set -e; $(MAKE) -C $$d install || exit 1); done)
+.PHONY: uninstall
+uninstall:
+ @test -z "$(SUBDIRS)" || ( set -e; for d in $(SUBDIRS)""; do \
+ (set -e; $(MAKE) -C $$d uninstall || exit 1); done)
+
.PHONY: test
test: all
@$(MAKE) -C tests test