diff options
Diffstat (limited to 'sbin/Makefile')
-rw-r--r-- | sbin/Makefile | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/sbin/Makefile b/sbin/Makefile new file mode 100644 index 0000000..73669f8 --- /dev/null +++ b/sbin/Makefile @@ -0,0 +1,17 @@ +SUBDIRS:=nologin \ + +export VERSION PREFIX + +.PHONY: all clean $(SUBDIRS) + +all: $(SUBDIRS) + +subdirs: $(SUBDIRS) + +$(SUBDIRS): + $(MAKE) $(MAKECMDGOALS) -C $@ + +clean: $(SUBDIRS) + +install: $(SUBDIRS) + |