diff options
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 + |