diff options
author | Diego Biurrun <diego@biurrun.de> | 2012-07-15 11:48:21 +0200 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2012-10-31 00:37:42 +0100 |
commit | 04581c8c77ce779e4e70684ac45302972766be0f (patch) | |
tree | 2bb3524b50be2a72e9c4a2531cce54a8a0d7f9df /Makefile | |
parent | 6860b4081d046558c44b1b42f22022ea341a2a73 (diff) | |
download | ffmpeg-04581c8c77ce779e4e70684ac45302972766be0f.tar.gz |
x86: yasm: Use complete source path for macro helper %includes
This is more consistent with the way we handle C #includes and
it simplifies the build system.
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -27,7 +27,7 @@ CPPFLAGS := $(IFLAGS) $(CPPFLAGS) CFLAGS += $(ECFLAGS) CCFLAGS = $(CPPFLAGS) $(CFLAGS) ASFLAGS := $(CPPFLAGS) $(ASFLAGS) -YASMFLAGS += $(IFLAGS:%=%/) -I$(SRC_PATH)/libavutil/x86/ -Pconfig.asm +YASMFLAGS += $(IFLAGS:%=%/) -Pconfig.asm HOSTCCFLAGS = $(IFLAGS) $(HOSTCFLAGS) LDFLAGS := $(ALLFFLIBS:%=$(LD_PATH)lib%) $(LDFLAGS) |