vectorized math is important
[CommonLispStat.git] / Makefile
blob35d6caae1abb514cc5b5af598b180f58fdc0948f
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 kclcmplr *~
19 cleanall:
20 (cd lib; make cleanall)
21 rm -f *.o *.fasl kclcmplr saved_kcls kcls cls
23 ## C compilation
26 # Modify according to your system's needs for dynamic loading
28 CFLAGS = -O -G 0 -DINTPTR
30 # Directory for Examples and Data -- MUST end in a / if not null
31 # For now, you have to install the Examples and Data directories by hand.
33 LSLIB=/usr/statlocal/lib/xlispstat/
35 lib/clib.a:
36 (cd lib; make CFLAGS="${CFLAGS}")
38 lib/exclglue.o:
39 (cd lib; make CFLAGS="${CFLAGS}" exclglue.o)
42 ## Lisp targets and compilation
44 sbcl :
47 clisp :
50 ## Debugging/Building
53 sbcl-debug :
56 clisp-debug :