mirror of
https://github.com/fancycode/MemoryModule
synced 2026-06-06 15:44:28 +00:00
18 lines
255 B
Makefile
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
|