diff options
author | Mans Rullgard <mans@mansr.com> | 2012-07-20 23:43:27 +0100 |
---|---|---|
committer | Mans Rullgard <mans@mansr.com> | 2012-07-28 01:50:12 +0100 |
commit | 23565c26415f0015b5ad235709dc44cac3939864 (patch) | |
tree | a8c329affd5d802bf28143b519247d9f065c8cb2 /Makefile | |
parent | 18031c49dcf0317b1f0690b3bb2941a6a94db38f (diff) | |
download | ffmpeg-23565c26415f0015b5ad235709dc44cac3939864.tar.gz |
build: support non-standard replacements for -c flag
This allows non-standard replacements for the -c compiler flag.
Some compilers use other flags or no flag at all in place of
the usual one.
Signed-off-by: Mans Rullgard <mans@mansr.com>
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -33,7 +33,7 @@ LDFLAGS := $(ALLFFLIBS:%=-Llib%) $(LDFLAGS) define COMPILE $(call $(1)DEP,$(1)) - $($(1)) $($(1)FLAGS) $($(1)_DEPFLAGS) -c $($(1)_O) $< + $($(1)) $($(1)FLAGS) $($(1)_DEPFLAGS) $($(1)_C) $($(1)_O) $< endef COMPILE_C = $(call COMPILE,CC) |