root/trunk/backmath/makefile.win

Revision 178, 425 bytes (checked in by BCS, 1 year ago)

added makefiles for win and linux

Line 
1 CL=gcl
2
3 all : backmath
4
5 tooling :
6     $(CL) < do.lisp
7
8 clean :
9     rm -f \
10     gen_log.txt \
11     backmath backmath.o generated_rules.d \
12
13 backmath : backmath.o
14     dmd backmath.o -unittest -version=Verbose
15
16 backmath.o : backmath.d generated_rules.d
17     dmd -c backmath.d -J.
18
19 generated_rules.d : gen_code_for_template.lisp generate_case.lisp meta.lisp rule_sorting.lisp string_stuff.lisp
20     type gen_code_for_template.lisp | $(CL) > gen_log.txt
Note: See TracBrowser for help on using the browser.