initial upload

This commit is contained in:
Luxferre
2024-09-14 14:41:59 +03:00
commit 9f04abf49c
118 changed files with 1080 additions and 0 deletions
+19
View File
@@ -0,0 +1,19 @@
# 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)