diff options
Diffstat (limited to 'apps/codecs/libwmapro/Makefile')
-rw-r--r-- | apps/codecs/libwmapro/Makefile | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/apps/codecs/libwmapro/Makefile b/apps/codecs/libwmapro/Makefile new file mode 100644 index 0000000000..74334ffad5 --- /dev/null +++ b/apps/codecs/libwmapro/Makefile @@ -0,0 +1,11 @@ +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 + |