1 # Makefile for tmndec.exe
2
3 CC = i486-cygwin32-gcc
4
5 #
6 # This will generate optimized machine code
7 #
8 CFLAGS = -O3 #-DUSE_TIME -DWINDOWS -DWIN32
9
10
11 OBJS = tmndec.o getpic.o getvlc.o gethdr.o getblk.o getbits.o store.o recon.o idct.o idctref.o display.o sac.o dither.o yuv2rgb.o yuvrgb24.o win.o
12 SRCS = $(subst .o,.c,$(OBJS))
13
14
15 tmndec.exe: $(OBJS)
16 $(CC) $(CFLAGS) $(LIBRARYDIR) -o $@ $(OBJS) -lm $(LIBS)
17
This page was automatically generated by the
LXR engine.
Visit the LXR main site for more
information.