hy/site/Makefile

37 lines
412 B
Makefile
Raw Normal View History

2013-03-10 13:28:50 -04:00
STATIC = static
STATIC_CSS = $(STATIC)/css
2013-03-10 15:17:16 -04:00
STATIC_JS = $(STATIC)/js
2013-03-10 13:28:50 -04:00
2013-03-10 15:20:27 -04:00
all: hello build
hello:
@cowsay 'Welcome to Hy!'
2013-03-10 13:28:50 -04:00
2013-03-10 16:10:06 -04:00
build: clean css js
2013-03-10 14:20:09 -04:00
2013-03-10 16:10:06 -04:00
css: less
cp css/* $(STATIC_CSS)
js: coffee
cp js/* $(STATIC_JS)
2013-03-10 15:17:16 -04:00
2013-03-10 14:20:09 -04:00
less:
2013-03-10 15:17:16 -04:00
make -C less
mv less/*css $(STATIC_CSS)
2013-03-10 13:28:50 -04:00
2013-03-10 14:20:09 -04:00
coffee:
2013-03-10 15:17:16 -04:00
make -C coffee
mv coffee/*js $(STATIC_JS)
2013-03-10 13:28:50 -04:00
clean:
2013-03-10 14:10:43 -04:00
rm -f $(STATIC_CSS)/hy.css
2013-03-10 13:28:50 -04:00
2013-03-10 15:30:49 -04:00
devel:
@./devel.sh
2013-03-10 13:28:50 -04:00
2013-03-10 15:30:49 -04:00
.PHONY: build clean less coffee devel