summaryrefslogtreecommitdiffstats
path: root/liba52
diff options
context:
space:
mode:
authorarpi <arpi@b3059339-0415-0410-9bf9-f77b7e298cf2>2001-12-09 18:04:17 +0000
committerarpi <arpi@b3059339-0415-0410-9bf9-f77b7e298cf2>2001-12-09 18:04:17 +0000
commit9bc7d2ad04206b305ffaedbfacae632901211ee9 (patch)
tree39271c0e3494bfb583af4ab587fd58c8aabfe9e9 /liba52
parent9594de24871bdffbceb7195ffb2ed939f5fc51ec (diff)
downloadmpv-9bc7d2ad04206b305ffaedbfacae632901211ee9.tar.bz2
mpv-9bc7d2ad04206b305ffaedbfacae632901211ee9.tar.xz
10l?
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@3408 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'liba52')
-rw-r--r--liba52/Makefile45
1 files changed, 45 insertions, 0 deletions
diff --git a/liba52/Makefile b/liba52/Makefile
new file mode 100644
index 0000000000..2fc4a8b097
--- /dev/null
+++ b/liba52/Makefile
@@ -0,0 +1,45 @@
+
+LIBNAME = liba52.a
+
+include ../config.mak
+
+SRCS = bit_allocate.c bitstream.c downmix.c imdct.c imdct_mlib.c parse.c
+OBJS = $(SRCS:.c=.o)
+
+CFLAGS = $(OPTFLAGS)
+
+.SUFFIXES: .c .o
+
+# .PHONY: all clean
+
+.c.o:
+ $(CC) -c $(CFLAGS) -o $@ $<
+
+$(LIBNAME): $(OBJS)
+ $(AR) r $(LIBNAME) $(OBJS)
+
+test: $(LIBNAME) test.c
+ $(CC) $(CFLAGS) test.c -o test -L. -la52
+
+test2: $(LIBNAME) test.c
+ $(CC) $(CFLAGS) test.c -o test2 -L../libac3 -lac3 -L. -la52
+
+all: $(LIBNAME)
+
+clean:
+ rm -f *.o *.a *~
+
+distclean:
+ rm -f test *.o *.a *~ .depend
+
+dep: depend
+
+depend:
+ $(CC) -MM $(CFLAGS) $(SRCS) 1>.depend
+
+#
+# include dependency files if they exist
+#
+ifneq ($(wildcard .depend),)
+include .depend
+endif