Remove the stubbed main() from wmaprodec.c since it's useless now and remove Makefile for the same reason.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@27010 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
c201772940
commit
8eeec17041
2 changed files with 0 additions and 17 deletions
|
@ -1,11 +0,0 @@
|
|||
STD = c99
|
||||
LINK = -lm
|
||||
CFLAGS = -Wall -std=$(STD)
|
||||
TARGET = test
|
||||
OBJS = wmaprodec.c wma.c dsputil.c mdct.c fft.c bitstream.c libavutil/log.c libavutil/mem.c libavutil/mathematics.c
|
||||
$(TARGET): $(OBJS)
|
||||
gcc $(CFLAGS) $(OBJS) $(LINK) -o $(TARGET)
|
||||
|
||||
clean:
|
||||
rm -f $(TARGET) *~ *.o libavutil/*.o
|
||||
|
|
@ -1599,9 +1599,3 @@ AVCodec wmapro_decoder = {
|
|||
.long_name = NULL_IF_CONFIG_SMALL("Windows Media Audio 9 Professional"),
|
||||
};
|
||||
#endif
|
||||
|
||||
int main(void)
|
||||
{
|
||||
/* possible test program - just here now to ensure linking is done properly */
|
||||
return 0;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue