StupidOS/bin/Makefile
d0p1 🏳️‍⚧️ 03c95cb0a4
Some checks are pending
Build / test (push) Waiting to run
Docs / test (push) Waiting to run
chore: add 'coff.h' header
2024-03-20 16:51:27 +01:00

14 lines
211 B
Makefile

SUBDIRS = cmd
TOPGOALS = all clean install
SUBDIRS = cmd
.PHONY: $(SUBDIRS)
$(SUBDIRS):
@echo "📁 bin/$@"
DESTDIR=$(DESTDIR)/bin $(MAKE) -C $@ $(MAKECMDGOALS)
.PHONY: $(TOPGOALS)
$(TOPGOALS): $(SUBDIRS)