d0p1
9a5b474ad2
Some checks failed
Build / test (push) Has been cancelled
Docs / test (push) Has been cancelled
11 lines
208 B
Makefile
11 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)
|