1
0
Fork 0
forked from len0rd/rockbox

Make the standalone FLAC test program work again (compile with make -f Makefile.test).

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@18093 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Dave Chapman 2008-07-19 08:41:21 +00:00
parent cf369575bc
commit ed2936ae70
2 changed files with 5 additions and 1 deletions

View file

@ -1,6 +1,6 @@
# Simple Makefile for standalone testing of decoder
OBJS=main.o decoder.o bitstream.o
OBJS=main.o decoder.o bitstream.o tables.o
CFLAGS=-O2 -Wall -DBUILD_STANDALONE
CC=gcc

View file

@ -1,4 +1,8 @@
#ifdef BUILD_STANDALONE
#define ICONST_ATTR
#else
#include "../codec.h"
#endif
#include <inttypes.h>
/* From ffmpeg - libavutil/common.h */