StupidOS/bin/Makefile

12 lines
197 B
Makefile
Raw Permalink Normal View History

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