diff options
author | Måns Rullgård | 2010-03-09 14:58:18 +0000 |
---|---|---|
committer | Måns Rullgård | 2010-03-09 14:58:18 +0000 |
commit | 451db9832c5604d02c8c876f9b3180fd7102b0a2 (patch) | |
tree | a1384c879e2c84ec3c2e1eff0c4f8a3407f7f12d /common.mak | |
parent | 8c5239b382519a12a74019849cf9d855a9afa2eb (diff) |
Simplify static/shared build rules
Originally committed as revision 22394 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'common.mak')
-rw-r--r-- | common.mak | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/common.mak b/common.mak index 4094ef198b..4028022808 100644 --- a/common.mak +++ b/common.mak @@ -2,7 +2,8 @@ # common bits used by all libraries # -all: # make "all" default target +# first so "all" becomes default target +all: all-yes ifndef SUBDIR vpath %.c $(SRC_DIR) @@ -59,6 +60,7 @@ $(BUILD_ROOT_REL)/version.h: $(SRC_PATH_BARE)/version.sh config.mak $< $(SRC_PATH) $@ $(EXTRA_VERSION) install: install-libs install-headers +install-libs: install-libs-yes uninstall: uninstall-libs uninstall-headers |