StupidOS/lib/Makefile

12 lines
208 B
Makefile
Raw Normal View History

2024-03-24 08:44:14 +00:00
SUBDIRS = csu crypto
2024-02-04 19:18:52 +00:00
TOPGOALS = all clean install
.PHONY: $(SUBDIRS)
$(SUBDIRS):
@echo "📁 lib/$@"
2024-03-24 08:44:14 +00:00
@DESTDIR=$(DESTDIR)/usr/lib $(MAKE) -C $@ $(MAKECMDGOALS)
2024-02-04 19:18:52 +00:00
.PHONY: $(TOPGOALS)
$(TOPGOALS): $(SUBDIRS)