StupidOS/bin/Makefile

12 lines
196 B
Makefile
Raw Normal View History

2024-02-04 19:18:52 +00:00
SUBDIRS = cmd
2024-02-04 19:18:52 +00:00
TOPGOALS = all clean install
.PHONY: $(SUBDIRS)
$(SUBDIRS):
@echo "📁 bin/$@"
DESTDIR=$(DESTDIR)/bin $(MAKE) -C $@ $(MAKECMDGOALS)
.PHONY: $(TOPGOALS)
$(TOPGOALS): $(SUBDIRS)