StupidOS/lib/Makefile

12 lines
200 B
Makefile
Raw Normal View History

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