diff options
author | Diego Biurrun <diego@biurrun.de> | 2011-05-19 19:22:41 +0200 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2011-05-19 21:07:38 +0200 |
commit | 9f2405661d5bcc9416f4b3339f1139997467e1f5 (patch) | |
tree | e3c517411b9c3639cc874a44c79ddbfa2af4f8a7 /libavcodec/Makefile | |
parent | 272874c9dbde5d48884c417b76f3c7f04938c92f (diff) | |
download | ffmpeg-9f2405661d5bcc9416f4b3339f1139997467e1f5.tar.gz |
Collapse tableprint.c into tableprint.h.
tableprint.c serves little purpose on its own and removing it allows building
the table generator programs with the normal HOSTPROGS Makefile rules.
Diffstat (limited to 'libavcodec/Makefile')
-rw-r--r-- | libavcodec/Makefile | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/libavcodec/Makefile b/libavcodec/Makefile index 7a9d897606..d0abe69202 100644 --- a/libavcodec/Makefile +++ b/libavcodec/Makefile @@ -666,7 +666,9 @@ TESTPROGS = cabac dct eval fft fft-fixed h264 iirfilter rangecoder snow TESTPROGS-$(HAVE_MMX) += motion TESTOBJS = dctref.o -HOSTPROGS = costablegen +HOSTPROGS = aac_tablegen aacps_tablegen cbrt_tablegen costablegen \ + dv_tablegen motionpixels_tablegen mpegaudio_tablegen \ + pcm_tablegen qdm2_tablegen sinewin_tablegen DIRS = alpha arm bfin mlib ppc ps2 sh4 sparc x86 @@ -688,9 +690,6 @@ else $(SUBDIR)%_tablegen$(HOSTEXESUF): HOSTCFLAGS += -DCONFIG_SMALL=0 endif -$(SUBDIR)%_tablegen$(HOSTEXESUF): $(SUBDIR)%_tablegen.c $(SUBDIR)%_tablegen.h $(SUBDIR)tableprint.c - $(HOSTCC) $(HOSTCFLAGS) $(HOSTLDFLAGS) -o $@ $(filter %.c,$^) $(HOSTLIBS) - GEN_HEADERS = cbrt_tables.h aacps_tables.h aac_tables.h dv_tables.h \ sinewin_tables.h mpegaudio_tables.h motionpixels_tables.h \ pcm_tables.h qdm2_tables.h |