diff options
author | Mans Rullgard <mans@mansr.com> | 2012-08-07 02:11:25 +0100 |
---|---|---|
committer | Mans Rullgard <mans@mansr.com> | 2012-08-07 21:36:51 +0100 |
commit | dfd9159f3db987e9115715cded7a4408179e3ed9 (patch) | |
tree | 82f135a2370113d8b91e74a0a372704ce3d0516e /library.mak | |
parent | 00cb52c65cb2913f20dd3d0e6601d1b0db0b657b (diff) | |
download | ffmpeg-dfd9159f3db987e9115715cded7a4408179e3ed9.tar.gz |
build: change checkheaders to use regular build rules
Many compilers need special flags to compile *.h files as regular
source code, if they will do so at all. Rather than hoping all
compilers will have such a flag and adding mappings for it, create
wrapper .c files for test building single headers.
This allows using the regular rule for compiling C files without the
need for special flags, and it also provides proper dependency tracking
for these objects.
Signed-off-by: Mans Rullgard <mans@mansr.com>
Diffstat (limited to 'library.mak')
-rw-r--r-- | library.mak | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/library.mak b/library.mak index cd3fdc28f9..3045640e0b 100644 --- a/library.mak +++ b/library.mak @@ -20,7 +20,7 @@ $(SUBDIR)x86/%.o: $(SUBDIR)x86/%.asm $(DEPYASM) $(YASMFLAGS) -I $(<D)/ -M -o $@ $< > $(@:.o=.d) $(YASM) $(YASMFLAGS) -I $(<D)/ -o $@ $< -$(OBJS) $(SUBDIR)%.ho $(TESTOBJS): CPPFLAGS += -DHAVE_AV_CONFIG_H +$(OBJS) $(SUBDIR)%.h.o $(TESTOBJS): CPPFLAGS += -DHAVE_AV_CONFIG_H $(TESTOBJS): CPPFLAGS += -DTEST $(SUBDIR)$(LIBNAME): $(OBJS) |