diff options
author | rekado <rekado@elephly.net> | 2015-11-15 22:22:55 +0100 |
---|---|---|
committer | rekado <rekado@elephly.net> | 2015-11-15 22:22:55 +0100 |
commit | 2b247bc848555062572275a1ec9cb0a21595e5d4 (patch) | |
tree | 927057bf6697a382b3b039fb1b0fecb612351fc2 /Makefile | |
parent | 5fa11e1cbad9996822bd26ed7113e0cfc32b88f6 (diff) |
Fun with makefiles.
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..8f97c64 --- /dev/null +++ b/Makefile @@ -0,0 +1,8 @@ +SUBDIRS := $(wildcard */.) + +all : $(SUBDIRS) + +$(SUBDIRS) : + $(MAKE) -C $@ + +.PHONY : all $(SUBDIRS) |