Subversion Repositories shark

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
1671 tullio 1
#
2
#
3
ifndef BASE
4
export BASE=../..
5
endif
6
 
7
include $(BASE)/config/config.mk
8
 
9
#PROGS=  test test1 test2
10
PROGS= decoder
11
 
12
MPEG2 = getbits.o getblk.o gethdr.o getpic.o\
13
	getvlc.o idct.o idctref.o motion.o\
14
	mpeg2dec.o recon.o spatscal.o store.o\
15
	subspic.o systems.o verify.o gvideo.o
16
 
17
include $(BASE)/config/example.mk
18
 
19
 
20
decoder:
21
	make -f $(SUBMAKE) APP=decoder INIT= OTHEROBJS="initfile.o $(MPEG2)" OTHERINCL= SHARKOPT="__INPUT__ __FIRST__ __NEW_TRACER__  __LINUXC26__ __PCI__ __NET__  __GRX__"
22