annotate CbC-examples/Makefile @ 127:4c56639505ff

fix function.c and add CbC-example Makefile
author mir3636
date Wed, 11 Apr 2018 18:46:58 +0900
parents
children fe568345ddd5
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
127
4c56639505ff fix function.c and add CbC-example Makefile
mir3636
parents:
diff changeset
1 TEST = arg.exe conv1.exe fact-a.exe goto.exe loto6.exe stack1.exe test02.exe test05.exe test1.exe test2.exe test_cs.exe test_csp1.exe test_env.exe test_func2code.exe test_para2.exe test_para3.exe test_para4.exe test_para.exe test_tree.exe tmp1.exe tmp2.exe tmp4.exe tmpa.exe too-long-argument.exe
4c56639505ff fix function.c and add CbC-example Makefile
mir3636
parents:
diff changeset
2
4c56639505ff fix function.c and add CbC-example Makefile
mir3636
parents:
diff changeset
3 .SUFFIXES: .exe
4c56639505ff fix function.c and add CbC-example Makefile
mir3636
parents:
diff changeset
4
4c56639505ff fix function.c and add CbC-example Makefile
mir3636
parents:
diff changeset
5 .c.exe :
4c56639505ff fix function.c and add CbC-example Makefile
mir3636
parents:
diff changeset
6 ${CBC_COMPILER} $(CFLAGS) -o $@ $<
4c56639505ff fix function.c and add CbC-example Makefile
mir3636
parents:
diff changeset
7
4c56639505ff fix function.c and add CbC-example Makefile
mir3636
parents:
diff changeset
8 test : $(TEST)
4c56639505ff fix function.c and add CbC-example Makefile
mir3636
parents:
diff changeset
9 for exe in ${TEST}; do; ./$${exe} ; done