Pushed to version 0.1.8. Details in changelog. (Makefile, FontAwesome, sass)

This commit is contained in:
dcooperdalrymple
2021-05-12 11:57:24 -05:00
parent 97a28d04a6
commit 4025007901
124 changed files with 65 additions and 11037 deletions

31
Makefile Normal file
View File

@@ -0,0 +1,31 @@
PACKAGE = OgreAlert
DIR = ./$(PACKAGE)
all: $(PACKAGE).zip
$(PACKAGE).zip: clean dir copy zip
dir:
mkdir $(DIR)
copy:
cp -RT ./assets $(DIR)/assets
cp -RT ./inc $(DIR)/inc
cp -RT ./lib $(DIR)/lib
cp -RT ./templates $(DIR)/templates
cp -f ./* $(DIR) || true
rm $(DIR)/Makefile
rm $(DIR)/$(PACKAGE).zip || true
rm -r $(DIR)/assets/sass/lib
rm $(DIR)/assets/sass/*.scss
rm $(DIR)/assets/sass/*.map
zip:
zip -r ./$(PACKAGE).zip $(DIR)
rm -r $(DIR) || true
clean:
rm -r $(DIR) || true
rm ./$(PACKAGE).zip || true