StupidOS/bin/Makefile
d0p1 🏳️‍⚧️ 74e09f7b33
Some checks are pending
Build / test (push) Waiting to run
Docs / test (push) Waiting to run
refactor: reorganize bootloader source code
2024-03-24 09:03:03 +01:00

12 lines
197 B
Makefile

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