Update of Czech language - FS#11371 by Marek Salaba
[kugel-rb.git] / apps / codecs / libffmpegFLAC / Makefile.test
blob0bd9e521e4048cdc6bec56cf743f489dd4c2ae53
1 # Simple Makefile for standalone testing of decoder
3 OBJS=main.o decoder.o bitstream.o tables.o
4 CFLAGS=-O2 -Wall -DBUILD_STANDALONE
5 CC=gcc
7 # Uncomment the next line to build on a big-endian target:
9 #CFLAGS += -DBUILD_BIGENDIAN
11 all: test
13 main.o: main.c decoder.h
14 decoder.o: decoder.c bitstream.h golomb.h decoder.h
15 bitstream.o: bitstream.c
17 test: $(OBJS)
18         gcc -o test $(OBJS)
20 clean:
21         rm -f test $(OBJS) *~