comparison CbC-examples/Makefile @ 134:71d4882a9ac3

add cbc-example
author kono
date Thu, 08 Nov 2018 06:52:59 +0900
parents fe568345ddd5
children 4627f235cf2a
comparison
equal deleted inserted replaced
133:420680fc7707 134:71d4882a9ac3
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 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_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
2 2
3 .SUFFIXES: .exe 3 .SUFFIXES: .exe
4 4
5 .c.exe : 5 .c.exe :
6 ${CBC_COMPILER} $(CFLAGS) -o $@ $< 6 ${CBC_COMPILER} $(CFLAGS) -o $@ $<
7 7
8 test : $(TEST) 8 test : $(TEST)
9 for exe in ${TEST} ; do \ 9 for exe in ${TEST} ; do \
10 ./$${exe} ; \ 10 ./$${exe} ; \
11 done 11 done
12
13 clean :
14 rm -f ${TEST}