mirror of
https://github.com/xenia-project/FFmpeg.git
synced 2024-11-24 12:09:55 +00:00
Fix build with hardcoded tables
The recently added dummy rule for missing headers took precedence over the tablegen rules. Listing the generated headers explicitly overrides this. A cleaner solution would be preferable. Originally committed as revision 24046 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
b9796cc7c7
commit
aad9f50751
@ -655,7 +655,12 @@ endif
|
|||||||
$(SUBDIR)%_tablegen$(HOSTEXESUF): $(SUBDIR)%_tablegen.c $(SUBDIR)%_tablegen.h $(SUBDIR)tableprint.c
|
$(SUBDIR)%_tablegen$(HOSTEXESUF): $(SUBDIR)%_tablegen.c $(SUBDIR)%_tablegen.h $(SUBDIR)tableprint.c
|
||||||
$(HOSTCC) $(HOSTCFLAGS) $(HOSTLDFLAGS) -o $@ $(filter %.c,$^) $(HOSTLIBS)
|
$(HOSTCC) $(HOSTCFLAGS) $(HOSTLDFLAGS) -o $@ $(filter %.c,$^) $(HOSTLIBS)
|
||||||
|
|
||||||
$(SUBDIR)%_tables.h: $(SUBDIR)%_tablegen$(HOSTEXESUF)
|
GEN_HEADERS = cbrt_tables.h aacps_tables.h aac_tables.h dv_tables.h \
|
||||||
|
mdct_tables.h mpegaudio_tables.h motionpixels_tables.h \
|
||||||
|
pcm_tables.h qdm2_tables.h
|
||||||
|
GEN_HEADERS := $(addprefix $(SUBDIR), $(GEN_HEADERS))
|
||||||
|
|
||||||
|
$(GEN_HEADERS): $(SUBDIR)%_tables.h: $(SUBDIR)%_tablegen$(HOSTEXESUF)
|
||||||
$(M)./$< > $@
|
$(M)./$< > $@
|
||||||
|
|
||||||
ifdef CONFIG_HARDCODED_TABLES
|
ifdef CONFIG_HARDCODED_TABLES
|
||||||
|
Loading…
Reference in New Issue
Block a user