1 # Simple Makefile for standalone testing of decoder
3 OBJS=main.o decoder.o bitstream.o tables.o
4 CFLAGS=-O2 -Wall -DBUILD_STANDALONE
7 # Uncomment the next line to build on a big-endian target:
9 #CFLAGS += -DBUILD_BIGENDIAN
13 main.o: main.c decoder.h
14 decoder.o: decoder.c bitstream.h golomb.h decoder.h
15 bitstream.o: bitstream.c