Files
StreamGoose/Makefile
T

20 lines
271 B
Makefile
Raw Normal View History

2024-09-14 14:41:59 +03:00
# main StreamGoose build flow
SRC = src
DIST = out
.PHONY: all test clean
all:
$(MAKE) -C $(SRC)
mkdir -p $(DIST)
mv $(SRC)/streamgoose $(DIST)/
cp -r webroot $(DIST)/
cp -r auth $(DIST)/
cp -r external $(DIST)/
cp config.json $(DIST)/
clean:
rm -rf $(DIST)