Details | Last modification | View Log | RSS feed
Rev | Author | Line No. | Line |
---|---|---|---|
1085 | pj | 1 | # |
2 | # |
||
3 | # |
||
4 | |||
5 | ifndef BASE |
||
6 | BASE=../../.. |
||
7 | endif |
||
8 | include $(BASE)/config/config.mk |
||
9 | |||
10 | PROGS=hello |
||
11 | PROGS+=test0 test1 |
||
12 | PROGS+=testw0 testw1 |
||
13 | PROGS+=tree1 tree2 |
||
14 | PROGS+=testu |
||
15 | OBJS=common.o |
||
16 | |||
17 | include $(BASE)/config/example.mk |
||
18 | |||
19 | # |
||
20 | # |
||
21 | # |
||
22 | |||
23 | hello: |
||
24 | make -f $(SUBMAKE) APP=hello INIT=initfs.o OTHEROBJS=common.o |
||
25 | |||
26 | test0: |
||
27 | make -f $(SUBMAKE) APP=test0 INIT=initfs.o OTHEROBJS=common.o |
||
28 | |||
29 | test1: |
||
30 | make -f $(SUBMAKE) APP=test1 INIT=initfs.o OTHEROBJS=common.o |
||
31 | |||
32 | testu: |
||
33 | make -f $(SUBMAKE) APP=testu INIT=initfs.o OTHEROBJS=common.o |
||
34 | |||
35 | testw0: |
||
36 | make -f $(SUBMAKE) APP=testw0 INIT=initfs.o OTHEROBJS=common.o |
||
37 | |||
38 | testw1: |
||
39 | make -f $(SUBMAKE) APP=testw1 INIT=initfs.o OTHEROBJS=common.o |
||
40 | |||
41 | tree1: |
||
42 | make -f $(SUBMAKE) APP=tree1 INIT=initfs.o OTHEROBJS=common.o |
||
43 | |||
44 | tree2: |
||
45 | make -f $(SUBMAKE) APP=tree2 INIT=initfs.o OTHEROBJS=common.o |