15 lines
231 B
Makefile
15 lines
231 B
Makefile
.PHONY: all
|
|
|
|
SOURCES_LIBS:=$(shell find lib -type f)
|
|
SOURCES_SRC:=$(shell find src -type f )
|
|
|
|
all: repotool
|
|
|
|
src/lib/repotool/stdlib.sh: $(SOURCES_LIBS)
|
|
bashly add --source . stdlib -f
|
|
|
|
repotool: $(SOURCES_SRC)
|
|
bashly generate
|
|
|
|
|