Subversion Repositories shark

Rev

Rev 1086 | Details | Compare with Previous | 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:
1088 pj 24
	make -f $(SUBMAKE) BASE=$(BASE) APP=hello INIT=initfs.o OTHEROBJS=common.o
1085 pj 25
 
26
test0:
1088 pj 27
	make -f $(SUBMAKE) BASE=$(BASE) APP=test0 INIT=initfs.o OTHEROBJS=common.o
1085 pj 28
 
29
test1:
1088 pj 30
	make -f $(SUBMAKE) BASE=$(BASE) APP=test1 INIT=initfs.o OTHEROBJS=common.o
1085 pj 31
 
32
testu:
1088 pj 33
	make -f $(SUBMAKE) BASE=$(BASE) APP=testu INIT=initfs.o OTHEROBJS=common.o
1085 pj 34
 
35
testw0:
1088 pj 36
	make -f $(SUBMAKE) BASE=$(BASE) APP=testw0 INIT=initfs.o OTHEROBJS=common.o
1085 pj 37
 
38
testw1:
1088 pj 39
	make -f $(SUBMAKE) BASE=$(BASE) APP=testw1 INIT=initfs.o OTHEROBJS=common.o
1085 pj 40
 
41
tree1:
1088 pj 42
	make -f $(SUBMAKE) BASE=$(BASE) APP=tree1 INIT=initfs.o OTHEROBJS=common.o
1085 pj 43
 
44
tree2:
1088 pj 45
	make -f $(SUBMAKE) BASE=$(BASE) APP=tree2 INIT=initfs.o OTHEROBJS=common.o