diff options
| author | Stephen Torri <storri@users.sourceforge.net> | 2002-09-19 06:01:18 +0000 |
|---|---|---|
| committer | Stephen Torri <storri@users.sourceforge.net> | 2002-09-19 06:01:18 +0000 |
| commit | 7fb9dc915cded39e8ad4bed49a14b0d6769ba5bd (patch) | |
| tree | a9fbf5d060b561dd9dccf6b96cc802111441b3ff /src/Makefile.am | |
| parent | f28b2a11a87ff7e1306087401c370cc720f0afa3 (diff) | |
| download | xine-lib-7fb9dc915cded39e8ad4bed49a14b0d6769ba5bd.tar.gz xine-lib-7fb9dc915cded39e8ad4bed49a14b0d6769ba5bd.tar.bz2 | |
Updated cvscompile.sh to look for configure.ac
Replaced configure.in with configure.ac
Remove acconfig.h (Unnecessary with autoconf 2.52 or above)
Updated configure.ac to remove deprecated macros, upgraded
AC_DEFINE to include comments, merged in acconfig.h.
Combined libxine and libxineutils into one library. libxineutils
is created but not installed. Its statically linked into libxine.
Advanced libxine version from 0.2.0 to 1.0.0
Removed references for skins.
Plugins now installed to <libdir>/xine/plugins/$XINE_MAJOR.$XINE_MORE.
$XINE_SUB
Xine-config updated for new location of plugins
Sorted file lists in Makefile.am to make them more readable.
TODO: remove skins references from xine-config
CVS patchset: 2705
CVS date: 2002/09/19 06:01:18
Diffstat (limited to 'src/Makefile.am')
| -rw-r--r-- | src/Makefile.am | 33 |
1 files changed, 27 insertions, 6 deletions
diff --git a/src/Makefile.am b/src/Makefile.am index 0baa614e9..66742e03c 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -1,9 +1,29 @@ - -SUBDIRS = xine-utils xine-engine audio_out video_out dxr3 input libmpeg2 libspudec demuxers \ - liba52 libffmpeg liblpcm libw32dll libmad libdts \ - libvorbis libdivx4 libsputext libspucc libxvid libxinevdec \ - libxineadec libfaad - +# Order is important be careful changing SUBDIRS +SUBDIRS = \ + xine-utils \ + xine-engine \ + audio_out \ + video_out \ + dxr3 \ + input \ + libmpeg2 \ + libspudec \ + demuxers \ + liba52 \ + libffmpeg \ + liblpcm \ + libw32dll \ + libmad \ + libdts \ + libvorbis \ + libdivx4 \ + libsputext \ + libspucc \ + libxvid \ + libxinevdec \ + libxineadec \ + libfaad + debug: @list='$(SUBDIRS)'; for subdir in $$list; do \ (cd $$subdir && $(MAKE) $@) || exit; \ @@ -23,3 +43,4 @@ maintainer-clean-generic: -@echo "it deletes files that may require special tools to rebuild." -rm -f Makefile.in + |
