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.
25 lines
365 B
Makefile
25 lines
365 B
Makefile
export POLLEN := BUILD
|
|
.PHONY: build go clean clean-helper build-helper quick test
|
|
|
|
build: test build-helper go
|
|
|
|
go:
|
|
raco pollen render -p
|
|
raco pollen publish
|
|
|
|
|
|
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 -p
|
|
|
|
quick: go
|
|
|
|
test:
|
|
echo $${POLLEN}
|