Files
OpenRAM/lib/Makefile
T

15 lines
227 B
Makefile
Raw Normal View History

SUBDIRS := $(wildcard */.)
2018-02-12 13:37:14 -08:00
SUBDIRSCLEAN=$(addsuffix clean,$(SUBDIRS))
all: $(SUBDIRS)
2018-02-12 13:37:14 -08:00
$(SUBDIRS):
2018-02-25 11:15:28 -08:00
$(MAKE) -k -C $@
2018-02-12 13:37:14 -08:00
clean:
for dir in $(SUBDIRS); do \
$(MAKE) -C $$dir $@; \
done
.PHONY: all $(SUBDIRS) $(SUBDIRSCLEAN)