changeset 20016:091983e8b1eb

Sync with FFmpeg r6543.
author diego
date Tue, 03 Oct 2006 18:28:37 +0000
parents d08ba4508bb0
children 8e43776eeb49
files common.mak
diffstat 1 files changed, 4 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
--- a/common.mak	Tue Oct 03 17:11:43 2006 +0000
+++ b/common.mak	Tue Oct 03 18:28:37 2006 +0000
@@ -34,11 +34,9 @@
 %.o: %.cpp
 	g++ $(subst -Wall,,$(CFLAGS)) -c -o $@ $<
 
-depend: $(SRCS)
+depend dep: $(SRCS)
 	$(CC) -MM $(CFLAGS) $^ 1>.depend
 
-dep:	depend
-
 clean::
 	rm -f *.o *.d *~ *.a *.lib *.so *.so.* *.dylib *.dll \
 	      *.lib *.def *.dll.a *.exp
@@ -69,6 +67,7 @@
 install-lib-static: $(LIB)
 	install -d "$(libdir)"
 	install -m 644 $(LIB) "$(libdir)"
+	$(LIB_INSTALL_EXTRA_CMD)
 
 install-headers:
 	install -d "$(incdir)"
@@ -88,6 +87,8 @@
 	rm -f "$(addprefix $(incdir)/,$(HEADERS))"
 	rm -f "$(libdir)/pkgconfig/lib$(NAME).pc"
 
+.PHONY: all depend dep clean distclean install* uninstall*
+
 #
 # include dependency files if they exist
 #