Subversion Repositories shark

Rev

Rev 1086 | Rev 1119 | Go to most recent revision | 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
 
1099 pj 10
PROGS=  ego fly cabs hello sig aster1 aster2 aster3 time
1085 pj 11
 
12
include $(BASE)/config/example.mk
13
 
1099 pj 14
 
15
# Text applications
16
hello:
17
	make -f $(SUBMAKE) APP=hello INIT= OTHEROBJS="ihello.o" OTHERINCL=
18
 
19
time:
20
	make -f $(SUBMAKE) APP=time INIT= OTHEROBJS="ihello.o" OTHERINCL=
21
 
22
sig:
23
	make -f $(SUBMAKE) APP=sig INIT= OTHEROBJS="ihello.o" OTHERINCL=
24
 
25
aster1:
26
	make -f $(SUBMAKE) APP=aster1 INIT= OTHEROBJS="iaster1.o" OTHERINCL=
27
 
28
aster2:
29
	make -f $(SUBMAKE) APP=aster2 INIT= OTHEROBJS="iaster1.o" OTHERINCL=
30
 
31
aster3:
32
	make -f $(SUBMAKE) APP=aster3 INIT= OTHEROBJS="iaster3.o" OTHERINCL=
33
 
34
# Graphical applications
35
 
1085 pj 36
ego:
37
	make -f $(SUBMAKE) APP=ego INIT= OTHEROBJS="initfile.o" OTHERINCL=
38
 
39
fly:
40
	make -f $(SUBMAKE) APP=fly INIT= OTHEROBJS="initfile.o" OTHERINCL=
41
 
42
cabs:
43
	make -f $(SUBMAKE) APP=cabs INIT= OTHEROBJS="initfile.o" OTHERINCL=
44