summaryrefslogtreecommitdiff
path: root/apps/codecs/libwmapro/Makefile
diff options
context:
space:
mode:
authorMohamed Tarek <mt@rockbox.org>2010-04-29 15:14:43 +0000
committerMohamed Tarek <mt@rockbox.org>2010-04-29 15:14:43 +0000
commit67f7ecf731d14f732db9d685aefd011f770d21a3 (patch)
tree680e77d8aeb617a9bec23629f20a35839e737f8c /apps/codecs/libwmapro/Makefile
parentc740af20e70ddc863c3a71f3b25e51b2a20b6795 (diff)
downloadrockbox-67f7ecf731d14f732db9d685aefd011f770d21a3.zip
rockbox-67f7ecf731d14f732db9d685aefd011f770d21a3.tar.gz
rockbox-67f7ecf731d14f732db9d685aefd011f770d21a3.tar.bz2
rockbox-67f7ecf731d14f732db9d685aefd011f770d21a3.tar.xz
Revert r25739 which added libwmapro to apps/codecs, in preparation to commit the unmodified ffmpeg files first, for the sake of a consistent/complete svn history.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@25758 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 1fdd820..0000000
--- a/apps/codecs/libwmapro/Makefile
+++ /dev/null
@@ -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) *~
-