changeset 3407:b33d04167063

10l?
author arpi
date Sun, 09 Dec 2001 18:04:17 +0000
parents fae985b5566d
children 725b3de963eb
files liba52/Makefile
diffstat 1 files changed, 45 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/liba52/Makefile	Sun Dec 09 18:04:17 2001 +0000
@@ -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