]> Creatis software - gdcm.git/blob - src/gdcmmpeg2/src/mpeg2enc/Makefile
ENH: For the long long long long term adding the part of lib that encode in mpeg
[gdcm.git] / src / gdcmmpeg2 / src / mpeg2enc / Makefile
1 # Makefile for mpeg2encode
2
3 # Copyright (C) 1996, MPEG Software Simulation Group. All Rights Reserved. */
4
5 #
6 # Disclaimer of Warranty
7 #
8 # These software programs are available to the user without any license fee or
9 # royalty on an "as is" basis.  The MPEG Software Simulation Group disclaims
10 # any and all warranties, whether express, implied, or statuary, including any
11 # implied warranties or merchantability or of fitness for a particular
12 # purpose.  In no event shall the copyright-holder be liable for any
13 # incidental, punitive, or consequential damages of any kind whatsoever
14 # arising from the use of these programs.
15 #
16 # This disclaimer of warranty extends to the user of these programs and user's
17 # customers, employees, agents, transferees, successors, and assigns.
18 #
19 # The MPEG Software Simulation Group does not represent or warrant that the
20 # programs furnished hereunder are free of infringement of any third-party
21 # patents.
22 #
23 # Commercial implementations of MPEG-1 and MPEG-2 video, including shareware,
24 # are subject to royalty fees to patent holders.  Many of these patents are
25 # general enough such that they are unavoidable regardless of implementation
26 # design.
27 #
28 #
29
30 # select one of the following CC CFLAGS settings
31
32 #
33 # GNU gcc
34 #
35 CC = gcc
36 CFLAGS = -O2 -Wall
37
38 OBJ = mpeg2enc.o conform.o putseq.o putpic.o puthdr.o putmpg.o putvlc.o putbits.o motion.o predict.o readpic.o writepic.o transfrm.o fdctref.o idct.o quantize.o ratectl.o stats.o
39
40 all: mpeg2encode
41
42 pc: mpeg2enc.exe
43
44 clean:
45         rm -f *.o *% core mpeg2encode
46
47 mpeg2enc.exe: mpeg2encode
48         coff2exe mpeg2enc
49
50 mpeg2encode: $(OBJ)
51         $(CC) $(CFLAGS) -o mpeg2encode $(OBJ) -lm
52
53 conform.o : conform.c config.h global.h mpeg2enc.h 
54 fdctref.o : fdctref.c config.h 
55 idct.o : idct.c config.h 
56 motion.o : motion.c config.h global.h mpeg2enc.h 
57 mpeg2enc.o : mpeg2enc.c config.h global.h mpeg2enc.h 
58 predict.o : predict.c config.h global.h mpeg2enc.h 
59 putbits.o : putbits.c config.h 
60 puthdr.o : puthdr.c config.h global.h mpeg2enc.h 
61 putmpg.o : putmpg.c config.h global.h mpeg2enc.h 
62 putpic.o : putpic.c config.h global.h mpeg2enc.h 
63 putseq.o : putseq.c config.h global.h mpeg2enc.h 
64 putvlc.o : putvlc.c config.h global.h mpeg2enc.h vlc.h 
65 quantize.o : quantize.c config.h global.h mpeg2enc.h 
66 ratectl.o : ratectl.c config.h global.h mpeg2enc.h 
67 readpic.o : readpic.c config.h global.h mpeg2enc.h 
68 stats.o : stats.c config.h global.h mpeg2enc.h 
69 transfrm.o : transfrm.c config.h global.h mpeg2enc.h 
70 writepic.o : writepic.c config.h global.h mpeg2enc.h