Export matrix stuff properly (?).
[CommonLispStat.git] / Makefile
blobcbebe0e123277e11aea6a503c573044c372617dd
1 .SUFFIXES: .o .lsp
3 default:
4 @echo "Targets:"
5 @echo " clean - remove build droppings"
6 @echo " sbcl - build using SBCL"
7 @echo " clisp - build using CLISP"
8 @echo " "
10 git-push :
11 git push --all git+ssh://repo.or.cz/srv/git/CommonLispStat.git
13 ## Workspace cleanup
15 clean:
16 (cd lib; make clean)
17 rm -f *.o *.fasl *~
19 dist-clean: clean
20 rm -rf fasl sbcl-fasl
22 ## C compilation
25 # Modify according to your system's needs for dynamic loading
27 CFLAGS = -O -G 0 -DINTPTR
29 # Directory for Examples and Data -- MUST end in a / if not null
30 # For now, you have to install the Examples and Data directories by hand.
32 LSLIB=/usr/statlocal/lib/xlispstat/
34 lib/clib.a:
35 (cd lib; make CFLAGS="${CFLAGS}")
37 lib/exclglue.o:
38 (cd lib; make CFLAGS="${CFLAGS}" exclglue.o)
41 ## Lisp targets and compilation
43 sbcl :
46 clisp :
49 ## Debugging/Building
52 sbcl-debug :
55 clisp-debug :