Skip to content

Commit 12ef9ae

Browse files
author
Jorge A Gallegos
committed
Adding top-level Makefile
1 parent dbe22cd commit 12ef9ae

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

Makefile

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
#!/usr/bin/make
2+
# vim: tabstop=4 softtabstop=4 noexpandtab fileencoding=utf-8
3+
4+
DIRS:= src
5+
6+
all:
7+
for d in $(DIRS); do (cd $$d; $(MAKE) $(MFLAGS)); done;
8+
9+
clean:
10+
for d in $(DIRS); do (cd $$d; $(MAKE) clean); done;
11+

0 commit comments

Comments
 (0)