diff options
author | James Stembridge <jstembridge@users.sourceforge.net> | 2003-03-14 12:23:21 +0000 |
---|---|---|
committer | James Stembridge <jstembridge@users.sourceforge.net> | 2003-03-14 12:23:21 +0000 |
commit | 24c7d9f992cc8c2512897ac22da440f672659fb7 (patch) | |
tree | 67ea35099a8cacc7c20061928a01a050045bf804 | |
parent | b091d0fb2d2ad0708b5d57f238ea215c7d09eea4 (diff) | |
download | xine-lib-24c7d9f992cc8c2512897ac22da440f672659fb7.tar.gz xine-lib-24c7d9f992cc8c2512897ac22da440f672659fb7.tar.bz2 |
Build post processing code
CVS patchset: 4407
CVS date: 2003/03/14 12:23:21
-rw-r--r-- | configure.ac | 1 | ||||
-rw-r--r-- | src/libffmpeg/libavcodec/Makefile.am | 5 |
2 files changed, 5 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index e9c7e3ded..9a2938e9d 100644 --- a/configure.ac +++ b/configure.ac @@ -1284,6 +1284,7 @@ src/libffmpeg/libavcodec/armv4l/Makefile src/libffmpeg/libavcodec/i386/Makefile src/libffmpeg/libavcodec/mlib/Makefile src/libffmpeg/libavcodec/alpha/Makefile +src/libffmpeg/libavcodec/libpostproc/Makefile src/libflac/Makefile src/liblpcm/Makefile src/libmad/Makefile diff --git a/src/libffmpeg/libavcodec/Makefile.am b/src/libffmpeg/libavcodec/Makefile.am index 3edc1ef19..c54f72ae8 100644 --- a/src/libffmpeg/libavcodec/Makefile.am +++ b/src/libffmpeg/libavcodec/Makefile.am @@ -2,7 +2,7 @@ ## Process this file with automake to produce Makefile.in ## -SUBDIRS = armv4l i386 mlib alpha +SUBDIRS = armv4l i386 mlib alpha libpostproc ## we include ppc/* files since auto* doesn't dive into. EXTRA_DIST = fdctref.c imgresample.c motion_est_template.c wmv2.c \ @@ -77,6 +77,9 @@ noinst_HEADERS = \ $(ASCOMPILE) -o $@ `test -f $< || echo '$(srcdir)/'`$< debug: + @list='$(SUBDIRS)'; for subdir in $$list; do \ + (cd $$subdir && $(MAKE) $@) || exit;\ + done; @$(MAKE) CFLAGS="$(DEBUG_CFLAGS) $(LIBFFMPEG_CFLAGS)" install-debug: debug |