Files
capsule/Makefile

12 lines
161 B
Makefile
Raw Normal View History

2020-11-24 22:46:02 +00:00
default: build
build:
2022-01-03 15:56:24 +00:00
@rm -rf public
@kiln build
chmod a+x public/cgi-bin/*
@tree public
2020-11-24 23:13:26 +00:00
deploy: build
2022-01-03 15:56:24 +00:00
rsync --delete-after -avzP public/ ur.gs:capsule/
2020-11-24 23:13:26 +00:00