mirror of
https://github.com/nzeemin/ukncbtl-utils.git
synced 2025-04-18 06:04:02 +03:00
15 lines
324 B
Makefile
15 lines
324 B
Makefile
|
|
# List all the sub-projects
|
|
SUBDIRS = rt11dsk Sav2Cartridge sav2wav SavDisasm
|
|
|
|
.PHONY: subdirs $(SUBDIRS)
|
|
|
|
subdirs: $(SUBDIRS)
|
|
|
|
$(SUBDIRS): FORCE
|
|
$(MAKE) -C $@
|
|
|
|
# A target without prerequisites and a recipe, and there is no file named `FORCE`.
|
|
# `make` will always run this and any other target that depends on it.
|
|
FORCE:
|