StupidOS/lib/Makefile
d0p1 🏳️‍⚧️ 9a5b474ad2
Some checks failed
Build / test (push) Has been cancelled
Docs / test (push) Has been cancelled
chore: lib/ cleanup
2024-03-24 09:44:14 +01:00

12 lines
208 B
Makefile

SUBDIRS = csu crypto
TOPGOALS = all clean install
.PHONY: $(SUBDIRS)
$(SUBDIRS):
@echo "📁 lib/$@"
@DESTDIR=$(DESTDIR)/usr/lib $(MAKE) -C $@ $(MAKECMDGOALS)
.PHONY: $(TOPGOALS)
$(TOPGOALS): $(SUBDIRS)