You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
324 B
Makefile
21 lines
324 B
Makefile
7 years ago
|
export POLLEN := BUILD
|
||
|
.PHONY: build go clean clean-helper build-helper quick
|
||
|
|
||
|
go:
|
||
|
raco pollen render
|
||
|
raco pollen publish
|
||
|
|
||
|
build: build-helper go
|
||
|
|
||
|
clean-helper:
|
||
|
rm -rf ~/git/pollen-tfl/*
|
||
|
cd ~/git/pollen-tfl
|
||
|
git reset --hard HEAD
|
||
|
|
||
|
clean: clean-helper build
|
||
|
|
||
|
build-helper:
|
||
|
raco pollen reset
|
||
|
raco pollen setup
|
||
|
|
||
|
quick: go
|