File: Makefile

package info (click to toggle)
cl-esrap 20180430-1
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 400 kB
  • sloc: lisp: 4,515; makefile: 61; sh: 7
file content (27 lines) | stat: -rw-r--r-- 367 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
.PHONY: doc web wc clean all test

all:
	echo "Targets: clean, wc, doc, test, web"

clean:
	rm -f *.fasl *~
	make -C doc clean
	make -C web clean

wc:
	wc -l *.lisp

doc:
	make -C doc

web: doc
	make -C web

gh-pages: web
	rm -rf web-tmp
	mv web web-tmp
	git checkout gh-pages
	cp web-tmp/index.html .
	git commit -a -c master
	mv web-tmp web
	git checkout -f master