summaryrefslogtreecommitdiff
path: root/usr.bin/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'usr.bin/Makefile')
-rw-r--r--usr.bin/Makefile17
1 files changed, 17 insertions, 0 deletions
diff --git a/usr.bin/Makefile b/usr.bin/Makefile
new file mode 100644
index 0000000..62e125c
--- /dev/null
+++ b/usr.bin/Makefile
@@ -0,0 +1,17 @@
+SUBDIRS:=
+
+export ARCH VERSION PREFIX
+
+.PHONY: all clean $(SUBDIRS)
+
+all: $(SUBDIRS)
+
+subdirs: $(SUBDIRS)
+
+$(SUBDIRS):
+ $(MAKE) $(MAKECMDGOALS) -C $@
+
+clean: $(SUBDIRS)
+
+install: $(SUBDIRS)
+