www-gopher/Makefile

19 lines
280 B
Makefile
Raw Normal View History

2016-08-11 12:51:05 +00:00
LISP= sbcl
all: dirs html
2016-08-11 12:51:05 +00:00
html: $(HTML) css
$(LISP) --load generator.lisp
2016-08-11 12:51:05 +00:00
dirs:
mkdir -p "output/html/static"
mkdir -p "output/gopher"
2016-04-30 15:21:31 +00:00
clean:
2016-08-11 12:51:05 +00:00
rm -fr output/html/* output/gopher/* "temp"
2016-04-30 15:21:31 +00:00
css:
2016-08-11 12:51:05 +00:00
mkdir -p "output/html/static"
cp -fr static/* "output/html/static/"