tMakefile - clic - Clic is an command line interactive client for gopher written in Common LISP
(HTM) git clone git://bitreich.org/clic/ git://hg6vgqziawt5s4dj.onion/clic/
(DIR) Log
(DIR) Files
(DIR) Refs
(DIR) Tags
(DIR) LICENSE
---
tMakefile (687B)
---
1 .PHONY: clean html pdf include clean-include clean-crap info doc
2
3 doc: pdf html info clean-crap
4
5 clean-include:
6 rm -rf include
7
8 clean-crap:
9 rm -f *.aux *.cp *.fn *.fns *.ky *.log *.pg *.toc *.tp *.tps *.vr
10
11 clean: clean-include
12 rm -f *.pdf *.html *.info
13
14 include:
15 sbcl --no-userinit --eval '(require :asdf)' \
16 --eval '(let ((asdf:*central-registry* (list "../"))) (require :alexandria))' \
17 --load docstrings.lisp \
18 --eval '(sb-texinfo:generate-includes "include/" (list :alexandria) :base-package :alexandria)' \
19 --eval '(quit)'
20
21 pdf: include
22 texi2pdf alexandria.texinfo
23
24 html: include
25 makeinfo --html --no-split alexandria.texinfo
26
27 info: include
28 makeinfo alexandria.texinfo