summaryrefslogtreecommitdiffstats
path: root/common.mak
diff options
context:
space:
mode:
authordiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2006-10-03 18:28:37 +0000
committerdiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2006-10-03 18:28:37 +0000
commit313d4f22cb116dd97896cfbcf9e2a502ca550d42 (patch)
tree8b045a02c9df913753ac2c96e417757998847d7f /common.mak
parent098bfe9f955b829aff5b65110e5e2c234813fea8 (diff)
downloadmpv-313d4f22cb116dd97896cfbcf9e2a502ca550d42.tar.bz2
mpv-313d4f22cb116dd97896cfbcf9e2a502ca550d42.tar.xz
Sync with FFmpeg r6543.
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20022 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'common.mak')
-rw-r--r--common.mak7
1 files changed, 4 insertions, 3 deletions
diff --git a/common.mak b/common.mak
index 40a655cdd4..cc7c7823f4 100644
--- a/common.mak
+++ b/common.mak
@@ -34,11 +34,9 @@ $(SLIBNAME_WITH_MAJOR): $(SHARED_OBJS)
%.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-shared: $(SLIBNAME)
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 @@ uninstall-headers:
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
#