Subversion Repositories shark

Rev

Rev 1389 | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
1347 giacomo 1
#
2
#
3
#
4
 
5
ifndef BASE
6
BASE=../..
7
endif
8
include $(BASE)/config/config.mk
9
 
1363 mauro 10
PROGS=  input speak key mouse joy
1347 giacomo 11
 
12
include $(BASE)/config/example.mk
13
 
14
input:
1406 giacomo 15
	make -f $(SUBMAKE) APP=input INIT= OTHEROBJS="initfile.o" SHARKOPT="__INPUT__ __LINUXC26__ __PCI__ __FB__"
1347 giacomo 16
 
17
speak:
1406 giacomo 18
	make -f $(SUBMAKE) APP=speak INIT= OTHEROBJS="initspk.o"  SHARKOPT="__INPUT__ __LINUXC26__ __PCI__"
1347 giacomo 19
 
1406 giacomo 20
key:
21
	make -f $(SUBMAKE) APP=key   INIT= OTHEROBJS="initkey.o"  SHARKOPT="__INPUT__ __LINUXC26__ __PCI__"
1363 mauro 22
 
23
mouse:
1406 giacomo 24
	make -f $(SUBMAKE) APP=mouse INIT= OTHEROBJS="initcur.o"  SHARKOPT="__INPUT__ __LINUXC26__ __PCI__"
1363 mauro 25
 
1389 mauro 26
joy:
1406 giacomo 27
	make -f $(SUBMAKE) APP=joy   INIT= OTHEROBJS="initjoy.o"  SHARKOPT="__INPUT__ __LINUXC26__ __PCI__"
1363 mauro 28