Files
core_make/tjp/Make/Makefile-all
Timothy Prepscius 46185db8f0 flatten 20260225
2026-02-25 12:34:54 -05:00

16 lines
442 B
Plaintext

###################################
# License: Modified MIT (NON-AI)
# Copyright 2025 Timothy Prepscius
# See the LICENSE file in the root directory for license information.
###################################
TOPTARGETS := all clean _debug _release _release_log
SUBDIRS := $(filter-out make.cpp/,$(dir $(wildcard */Makefile.project)))
$(TOPTARGETS): $(SUBDIRS)
$(SUBDIRS):
$(MAKE) -C $@ $(MAKECMDGOALS)
.PHONY: $(TOPTARGETS) $(SUBDIRS)