fbui | Framebuffer-based graphical environment |
| download: https://git.y1.nz/archives/fbui.tar.gz | |
| README | Files | Log | Refs |
libfbui/MPEG/Makefile
1 # Makefile for mpeg2decode
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 #WARNINGS = -Wall
31 #VERIFY = -DVERIFY
32
33 #disable this flag if you do not want bitstream element tracing
34 #this will speed up the decoder some since it does not have to test
35 #the trace flag at several critical inner loop locations.
36 TRACE = -DTRACE
37
38 #disable this flag if you do not need verbose trace, such as
39 #header information
40 VERBOSE = -DVERBOSE
41
42 # uncomment the following two lines if you want to include X11 support
43
44 # For FBUI don't use these:
45 # USE_DISP = -DDISPLAY
46 # LIBS = -lX11
47
48 # uncomment the following two lines if you want to use shared memory
49 # (faster display if server and client run on the same machine)
50
51 # USE_SHMEM = -DSH_MEM
52 LIBS = ../libfbui.a # -lXext -lX11
53
54 # if your X11 include files / libraries are in a non standard location:
55 # set INCLUDEDIR to -I followed by the appropriate include file path and
56 # set LIBRARYDIR to -L followed by the appropriate library path and
57
58 #INCLUDEDIR = -I/usr/openwin/include
59 LIBRARYDIR = -L/usr/X11/lib
60
61 #
62 # GNU gcc
63 #
64 CC = gcc
65 CFLAGS = -O2 $(USE_DISP) $(USE_SHMEM) $(INCLUDEDIR) $(TRACE) $(VERBOSE) $(VERIFY) $(WARNINGS)
66
67 OBJ = mpeg2dec.o getpic.o motion.o getvlc.o gethdr.o getblk.o getbits.o store.o recon.o spatscal.o idct.o idctref.o display.o systems.o subspic.o verify.o
68
69 all: mpeg2decode
70
71 pc: mpeg2dec.exe
72
73 clean:
74 rm -f *.o *% core mpeg2decode
75
76 mpeg2dec.exe: mpeg2decode
77 coff2exe mpeg2dec
78
79 mpeg2decode: $(OBJ)
80 $(CC) $(CFLAGS) $(LIBRARYDIR) -o mpeg2decode $(OBJ) -lm $(LIBS)
81
82 display.o : display.c config.h global.h mpeg2dec.h
83 getbits.o : getbits.c config.h global.h mpeg2dec.h
84 getblk.o : getblk.c config.h global.h mpeg2dec.h
85 gethdr.o : gethdr.c config.h global.h mpeg2dec.h
86 getpic.o : getpic.c config.h global.h mpeg2dec.h
87 getvlc.o : getvlc.c config.h global.h mpeg2dec.h getvlc.h
88 idct.o : idct.c config.h
89 idctref.o : idctref.c config.h
90 motion.o : motion.c config.h global.h mpeg2dec.h
91 mpeg2dec.o : mpeg2dec.c config.h global.h mpeg2dec.h
92 recon.o : recon.c config.h global.h mpeg2dec.h
93 spatscal.o : spatscal.c config.h global.h mpeg2dec.h
94 store.o : store.c config.h global.h mpeg2dec.h
95
96 # additions since July 4, 1994 edition
97 systems.o : systems.c config.h global.h mpeg2dec.h
98 subspic.o : subspic.c config.h global.h mpeg2dec.h
99 verify.o: verify.c config.h global.h mpeg2dec.h
This webpage is intended to be an accessible preview of this repository. To get a fuller picture, clone it and use the git CLI.