diff options
author | Måns Rullgård <mans@mansr.com> | 2010-03-08 18:43:29 +0000 |
---|---|---|
committer | Måns Rullgård <mans@mansr.com> | 2010-03-08 18:43:29 +0000 |
commit | 2f8ba7fc74848de65a2edfc88984438ab1a1aa8d (patch) | |
tree | faec649dfd367cfe53791c1667568ba0f8e6078b /subdir.mak | |
parent | 22f73dccad7c43ea68eefd7d4ce9efff6c8f45c2 (diff) | |
download | ffmpeg-2f8ba7fc74848de65a2edfc88984438ab1a1aa8d.tar.gz |
Define HAVE_AV_CONFIG_H when building test apps
Originally committed as revision 22330 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'subdir.mak')
-rw-r--r-- | subdir.mak | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/subdir.mak b/subdir.mak index db0d8763f7..30feab7d85 100644 --- a/subdir.mak +++ b/subdir.mak @@ -5,7 +5,7 @@ include $(SUBDIR)../common.mak LIBVERSION := $(lib$(NAME)_VERSION) LIBMAJOR := $(lib$(NAME)_VERSION_MAJOR) -$(OBJS): CPPFLAGS += -DHAVE_AV_CONFIG_H +$(OBJS) $(SUBDIR)%-test.o: CPPFLAGS += -DHAVE_AV_CONFIG_H ifdef CONFIG_STATIC all: $(SUBDIR)$(LIBNAME) @@ -29,10 +29,10 @@ $(SUBDIR)%$(EXESUF): $(SUBDIR)%.o $$(LD) $(FFLDFLAGS) -o $$@ $$^ -l$(FULLNAME) $(FFEXTRALIBS) $$(ELIBS) $(SUBDIR)%-test.o: $(SUBDIR)%.c - $$(CC) $(CPPFLAGS) $(CFLAGS) -DTEST -c $$(CC_O) $$^ + $$(CC) $$(CPPFLAGS) $(CFLAGS) -DTEST -c $$(CC_O) $$^ $(SUBDIR)%-test.o: $(SUBDIR)%-test.c - $$(CC) $(CPPFLAGS) $(CFLAGS) -DTEST -c $$(CC_O) $$^ + $$(CC) $$(CPPFLAGS) $(CFLAGS) -DTEST -c $$(CC_O) $$^ $(SUBDIR)x86/%.o: $(SUBDIR)x86/%.asm $$(YASMDEP) $(YASMFLAGS) -I $$(<D)/ -M -o $$@ $$< > $$(@:.o=.d) |