pupupu

simple static CMS for crappy servers
git clone https://git.ce9e.org/pupupu.git

commit
b4a1efd92932cd8909e259a7f87648e91677950c
parent
a78a9254ef5eec043a2dc4d1be4b5fdb8bc08bb3
Author
Tobias Bengfort <tobias.bengfort@posteo.de>
Date
2018-10-12 17:23
add Makefile

Diffstat

A Makefile 11 +++++++++++

1 files changed, 11 insertions, 0 deletions


diff --git a/Makefile b/Makefile

@@ -0,0 +1,11 @@
   -1     1 .PHONY: install
   -1     2 install: vendor node_modules static/main.css
   -1     3 
   -1     4 vendor:
   -1     5 	composer install
   -1     6 
   -1     7 node_modules:
   -1     8 	npm install
   -1     9 
   -1    10 %.css: %.scss node_modules
   -1    11 	sassc $< > $@