mirror of
https://github.com/vxcontrol/MemoryModule.git
synced 2026-07-16 07:14:26 -04:00
21 lines
285 B
Makefile
21 lines
285 B
Makefile
SUBDIRS = example tests
|
|
|
|
.PHONY: subdirs $(SUBDIRS)
|
|
|
|
subdirs: $(SUBDIRS)
|
|
|
|
$(SUBDIRS):
|
|
$(MAKE) -C $@
|
|
|
|
CLEANDIRS = $(SUBDIRS:%=clean-%)
|
|
|
|
clean: $(CLEANDIRS)
|
|
$(CLEANDIRS):
|
|
$(MAKE) -C $(@:clean-%=%) clean
|
|
|
|
test:
|
|
$(MAKE) -C tests test
|
|
|
|
.PHONY: subdirs $(INSTALLDIRS)
|
|
.PHONY: clean test
|