Minor edit to Makefile to support explicit 'all' target.
dblume

dblume commited on 2021-11-03 23:21:53
Showing 1 changed files, with 1 additions and 1 deletions.

... ...
@@ -10,7 +10,7 @@ $(SUBDIRS):
10 10
 
11 11
 all: $(LIBDIR) subdirs
12 12
 	for dir in $(SUBDIRS); do \
13
-		$(MAKE) -C $$dir \
13
+		$(MAKE) -C $$dir $(MAKECMDGOALS); \
14 14
 	done
15 15
 
16 16
 debug:
17 17