Makefile - clic - Clic is an command line interactive client for gopher written in Common LISP
 (HTM) git clone git://bitreich.org/clic/ git://enlrupgkhuxnvlhsf6lc3fziv5h2hhfrinws65d7roiv6bfj7d652fid.onion/clic/
 (DIR) Log
 (DIR) Files
 (DIR) Refs
 (DIR) Tags
 (DIR) README
 (DIR) LICENSE
       ---
       Makefile (994B)
       ---
            1 # -*- Mode: Makefile; tab-width: 4; indent-tabs-mode: t -*-
            2 
            3 MANUAL := "babel"
            4 SYSTEM := "babel"
            5 PACKAGES := babel babel-encodings
            6 TITLE := "Babel Manual"
            7 CSS := "default"
            8 
            9 export LISP ?= sbcl
           10 export SBCL_OPTIONS ?= --noinform
           11 
           12 .PHONY: all clean html pdf upload
           13 
           14 all:
           15         texinfo-docstrings all $(SYSTEM) $(MANUAL) $(TITLE) $(CSS) $(PACKAGES)
           16 
           17 pdf:
           18         texinfo-docstrings pdf $(SYSTEM) $(MANUAL) $(TITLE) $(CSS) $(PACKAGES)
           19 
           20 html:
           21         texinfo-docstrings html $(SYSTEM) $(MANUAL) $(TITLE) $(CSS) $(PACKAGES)
           22 
           23 upload:
           24 #        rsync -av --delete -e ssh manual common-lisp.net:/project/FOO/public_html/
           25 #        scp -r manual common-lisp.net:/project/cffi/public_html/
           26 
           27 clean:
           28         find . \( -name "*.pdf" -o -name "*.html" -o -name "*.info" -o -name "*.aux" -o -name "*.cp" -o -name "*.fn" -o -name "*.fns" -o -name "*.ky" -o -name "*.log" -o -name "*.pg" -o -name "*.toc" -o -name "*.tp" -o -name "*.vr" -o -name "*.dvi" -o -name "*.cps" -o -name "*.vrs" \) -exec rm {} \;
           29         rm -rf include manual
           30 
           31 # vim: ft=make ts=4 noet