Commit f2f7d9d2 authored by bellard's avatar bellard

added basic png handling - do not remake dependencies automatically


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@1528 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 515c1d06
......@@ -20,7 +20,7 @@ OBJS+= asf.o
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 @@ SRCS := $(OBJS:.o=.c)
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
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment