root/trunk/backmath/makefile.linux

Revision 179, 0.6 kB (checked in by BCS, 1 year ago)

Darn stupid merge saved the wrong file!!!!

Line 
1 CL=gcl
2
3 all : backmath
4     wc -l generated_rules.d
5     echo -n total rules generated:; grep alias generated_rules.d | wc -l
6
7 tooling :
8     $(CL) < do.lisp
9
10 clean :
11     rm -f \
12     gen_log.txt \
13     backmath backmath.o generated_rules.d \
14
15 backmath : backmath.o
16     true ========= build test use
17     dmd backmath.o -unittest -version=Verbose
18
19 backmath.o : backmath.d generated_rules.d
20     dmd -c backmath.d -J.
21
22 generated_rules.d : gen_code_for_template.lisp generate_case.lisp meta.lisp rule_sorting.lisp string_stuff.lisp
23     true ========= Generate Lib
24     $(CL) < gen_code_for_template.lisp > gen_log.txt
25     grep CODE_GEN_DONE gen_log.txt
Note: See TracBrowser for help on using the browser.