mirror of
https://github.com/vxcontrol/MemoryModule.git
synced 2026-07-21 06:05:55 -04:00
18 lines
244 B
Makefile
18 lines
244 B
Makefile
SUBDIRS = example
|
|
|
|
.PHONY: subdirs $(SUBDIRS)
|
|
|
|
subdirs: $(SUBDIRS)
|
|
|
|
$(SUBDIRS):
|
|
$(MAKE) -C $@
|
|
|
|
CLEANDIRS = $(SUBDIRS:%=clean-%)
|
|
|
|
clean: $(CLEANDIRS)
|
|
$(CLEANDIRS):
|
|
$(MAKE) -C $(@:clean-%=%) clean
|
|
|
|
.PHONY: subdirs $(INSTALLDIRS)
|
|
.PHONY: clean
|