mirror of
https://github.com/Maschell/WUPSPluginPlayground.git
synced 2024-11-06 04:45:05 +01:00
13 lines
206 B
Makefile
13 lines
206 B
Makefile
SUBDIRS = $(shell ls -d */)
|
|
|
|
.PHONY: all clean
|
|
|
|
all:
|
|
for dir in $(SUBDIRS); do \
|
|
$(MAKE) -C $$dir -f Makefile; \
|
|
done
|
|
|
|
clean:
|
|
for dir in $(SUBDIRS); do \
|
|
$(MAKE) -C $$dir -f Makefile clean; \
|
|
done
|