mirror of
https://github.com/VLSIDA/OpenRAM.git
synced 2026-08-29 01:24:39 +02:00
15 lines
227 B
Makefile
15 lines
227 B
Makefile
SUBDIRS := $(wildcard */.)
|
|
SUBDIRSCLEAN=$(addsuffix clean,$(SUBDIRS))
|
|
|
|
all: $(SUBDIRS)
|
|
|
|
$(SUBDIRS):
|
|
$(MAKE) -k -C $@
|
|
|
|
clean:
|
|
for dir in $(SUBDIRS); do \
|
|
$(MAKE) -C $$dir $@; \
|
|
done
|
|
|
|
.PHONY: all $(SUBDIRS) $(SUBDIRSCLEAN)
|