1 # Makefile for tmndec
2
3 # This is free software. See the file COPYING for copying conditions.
4
5 #
6 # GNU gcc
7 #
8
9 CC = gcc
10 #
11 # This will generate optimized machine code
12 #
13 CFLAGS = -g -Wall -O3 -DVIC -pg
14
15 # dither.o yuv2rgb.o yuvrgb24.o win.o display.o
16 OBJS = tmndec.o getpic.o getvlc.o gethdr.o getblk.o getbits.o store.o \
17 recon.o idct.o idctref.o sac.o
18 SRCS = $(subst .o,.c,$(OBJS))
19
20 libh263.a : $(OBJS)
21 rm -f $@
22 ar rc $@ $(OBJS)
23 ranlib $@
24
25 clean:
26 rm -f *.o *% core tmndec *~
27
28 depend dep:
29 gccmakedep -- $(CFLAGS) -- $(SRCS)
30
31 # DO NOT DELETE
This page was automatically generated by the
LXR engine.
Visit the LXR main site for more
information.