Details | Last modification | View Log | RSS feed
Rev | Author | Line No. | Line |
---|---|---|---|
1663 | pj | 1 | # |
2 | # |
||
3 | # |
||
4 | |||
5 | ifndef BASE |
||
6 | BASE=../.. |
||
7 | endif |
||
8 | include $(BASE)/config/config.mk |
||
9 | |||
10 | PROGS = step1 step1b step2 step2b step3 step4 |
||
11 | |||
12 | include $(BASE)/config/example.mk |
||
13 | |||
14 | step1: step1.c |
||
15 | gcc step1.c -o step1 |
||
16 | |||
17 | step1b: step1b.c |
||
18 | gcc step1b.c -o step1b |
||
19 | |||
20 | runstep1: step1 length.dat |
||
21 | step1 < length.dat > shape.dat |
||
22 | |||
23 | runstep1b: step1b length.dat |
||
24 | step1b < length.dat > shape.dat |
||
25 | |||
26 | step2: |
||
27 | make -f $(SUBMAKE) APP=step2 INIT= OTHEROBJS="tune.o" OTHERINCL= |
||
28 | |||
29 | step2b: |
||
30 | make -f $(SUBMAKE) APP=step2b INIT= OTHEROBJS="tune.o" OTHERINCL= |
||
31 | |||
32 | step3: |
||
33 | make -f $(SUBMAKE) APP=step3 INIT= OTHEROBJS="tune.o" OTHERINCL= |
||
34 | |||
35 | step4: step4.c |
||
36 | gcc step4.c -o step4 |
||
37 | |||
38 | runstep4: step4 hpattern.dat vpattern.dat |
||
39 | step4 hpattern.dat vpattern.dat > crunch.dat |
||
40 | |||
41 | clean:: |
||
42 | rm *.o *.exe |
||
43 |