diff options
author | Mans Rullgard <mans@mansr.com> | 2011-06-28 17:08:00 +0100 |
---|---|---|
committer | Mans Rullgard <mans@mansr.com> | 2011-06-28 18:15:19 +0100 |
commit | 57b4a3dd2b358b2122736af861c1538acd1eed1a (patch) | |
tree | 4c959f90b1d66fe6989592fe7d05c94c288cabe6 /Makefile | |
parent | 618230c7f44adf2c6acc68028e4117376c9f68db (diff) | |
download | ffmpeg-57b4a3dd2b358b2122736af861c1538acd1eed1a.tar.gz |
build: include sub-makefiles using full path instead of symlinks
Signed-off-by: Mans Rullgard <mans@mansr.com>
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -79,7 +79,7 @@ DATA_FILES := $(wildcard $(SRC_PATH)/ffpresets/*.ffpreset) SKIPHEADERS = cmdutils_common_opts.h -include common.mak +include $(SRC_PATH)/common.mak FF_LDFLAGS := $(FFLDFLAGS) FF_EXTRALIBS := $(FFEXTRALIBS) @@ -105,7 +105,7 @@ endef define DOSUBDIR $(foreach V,$(SUBDIR_VARS),$(eval $(call RESET,$(V)))) SUBDIR := $(1)/ -include $(1)/Makefile +include $(SRC_PATH)/$(1)/Makefile endef $(foreach D,$(FFLIBS),$(eval $(call DOSUBDIR,lib$(D)))) @@ -182,8 +182,8 @@ config: check: test checkheaders -include doc/Makefile -include tests/Makefile +include $(SRC_PATH)/doc/Makefile +include $(SRC_PATH)/tests/Makefile # Dummy rule to stop make trying to rebuild removed or renamed headers %.h: |