changeset 43:a23fb606308a libavformat

added basic png handling - do not remake dependencies automatically
author bellard
date Sat, 01 Feb 2003 20:53:07 +0000
parents cfc262e9955c
children 7c5da7e7239a
files Makefile
diffstat 1 files changed, 3 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
--- a/Makefile	Sat Feb 01 20:51:52 2003 +0000
+++ b/Makefile	Sat Feb 01 20:53:07 2003 +0000
@@ -20,7 +20,7 @@
 endif
 
 # image formats
-OBJS+= pnm.o yuv.o
+OBJS+= pnm.o yuv.o png.o libpng/png.o libpng/pngread.o libpng/pngrutil.o libpng/pngwrite.o libpng/pngwutil.o
 # file I/O
 OBJS+= avio.o aviobuf.o file.o 
 OBJS+= framehook.o 
@@ -63,14 +63,14 @@
 
 all: $(LIB)
 
-$(LIB): .depend $(OBJS)
+$(LIB): $(OBJS)
 	rm -f $@
 	$(AR) rc $@ $(OBJS)
 ifneq ($(CONFIG_OS2),yes)
 	$(RANLIB) $@
 endif
 
-.depend: $(SRCS)
+depend: $(SRCS)
 	$(CC) -MM $(CFLAGS) $^ 1>.depend
 
 installlib: all