summaryrefslogtreecommitdiff
path: root/apps/codecs/libwmapro/Makefile
diff options
context:
space:
mode:
authorMohamed Tarek <mt@rockbox.org>2010-06-21 12:29:48 +0000
committerMohamed Tarek <mt@rockbox.org>2010-06-21 12:29:48 +0000
commit8eeec17041aba1727fdd8847e3b8254d3ec62239 (patch)
tree0213c8785cb2f713f49e5772c49779d8c51d81d9 /apps/codecs/libwmapro/Makefile
parentc20177294022402d6644b5d66f2252f3dc2d7125 (diff)
downloadrockbox-8eeec17041aba1727fdd8847e3b8254d3ec62239.tar.gz
rockbox-8eeec17041aba1727fdd8847e3b8254d3ec62239.zip
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
Diffstat (limited to 'apps/codecs/libwmapro/Makefile')
-rw-r--r--apps/codecs/libwmapro/Makefile11
1 files changed, 0 insertions, 11 deletions
diff --git a/apps/codecs/libwmapro/Makefile b/apps/codecs/libwmapro/Makefile
deleted file mode 100644
index 74334ffad5..0000000000
--- a/apps/codecs/libwmapro/Makefile
+++ /dev/null
@@ -1,11 +0,0 @@
1STD = c99
2LINK = -lm
3CFLAGS = -Wall -std=$(STD)
4TARGET = test
5OBJS = wmaprodec.c wma.c dsputil.c mdct.c fft.c bitstream.c libavutil/log.c libavutil/mem.c libavutil/mathematics.c
6$(TARGET): $(OBJS)
7 gcc $(CFLAGS) $(OBJS) $(LINK) -o $(TARGET)
8
9clean:
10 rm -f $(TARGET) *~ *.o libavutil/*.o
11