style members

This commit is contained in:
Clément
2018-09-12 01:34:13 +02:00
parent 6996faa2e1
commit 5561d9a604
12 changed files with 185 additions and 98 deletions

View File

@ -25,17 +25,17 @@ watch:
@echo 'watching for change'
@echo 'press ctrl+C to stop'
@while true; do \
make build --silent; \
$(MAKE) build --silent; \
sleep 0.5; \
done
serve: dist/css/hd-app.css
php -S 127.0.0.1:8080 router.php
dev-mt: serve watch
dev-mt: watch serve
dev:
make dev-mt -j --silent
@$(MAKE) dev-mt -j --no-print-directory
.PHONY: default install build build-prod watch serve