##// END OF EJS Templates
Fixed Makefile. Now correctly forward targets to subfolders
Fixed Makefile. Now correctly forward targets to subfolders

File last commit:

r645:cc8f80f527e5 default
r645:cc8f80f527e5 default
Show More
Makefile
10 lines | 143 B | text/x-makefile | MakefileLexer
SUBDIRS := $(shell find ./ -maxdepth 1 -mindepth 1 -type d)
all :
.PHONY: force
%:
-for d in $(SUBDIRS); do (cd $$d; $(MAKE) $@ ); done