Files
MemoryModule/example/Makefile
T
2014-09-21 14:11:37 +02:00

18 lines
255 B
Makefile

SUBDIRS = DllLoader SampleDLL
.PHONY: subdirs $(SUBDIRS)
subdirs: $(SUBDIRS)
$(SUBDIRS):
$(MAKE) -C $@
CLEANDIRS = $(SUBDIRS:%=clean-%)
clean: $(CLEANDIRS)
$(CLEANDIRS):
$(MAKE) -C $(@:clean-%=%) clean
.PHONY: subdirs $(INSTALLDIRS)
.PHONY: clean