diff options
author | Guenter Bartsch <guenter@users.sourceforge.net> | 2001-04-22 00:31:44 +0000 |
---|---|---|
committer | Guenter Bartsch <guenter@users.sourceforge.net> | 2001-04-22 00:31:44 +0000 |
commit | 2ec0d40dc7803a6c44da5d85de3c468a82fd17b8 (patch) | |
tree | 91cd0dead746b67f01ab069e8c9032192a912ebc /src/xine-engine/Makefile.am | |
parent | 8e7dc911d41be3013198436848492efbce679c9a (diff) | |
download | xine-lib-2ec0d40dc7803a6c44da5d85de3c468a82fd17b8.tar.gz xine-lib-2ec0d40dc7803a6c44da5d85de3c468a82fd17b8.tar.bz2 |
video/audio_decoder cleanups
CVS patchset: 12
CVS date: 2001/04/22 00:31:44
Diffstat (limited to 'src/xine-engine/Makefile.am')
-rw-r--r-- | src/xine-engine/Makefile.am | 17 |
1 files changed, 9 insertions, 8 deletions
diff --git a/src/xine-engine/Makefile.am b/src/xine-engine/Makefile.am index 8608b16b5..c253a8ff6 100644 --- a/src/xine-engine/Makefile.am +++ b/src/xine-engine/Makefile.am @@ -9,7 +9,7 @@ lib_LTLIBRARIES = libxine.la ##libxine_la_SOURCES = xine.c buffer.c metronom.c configfile.c \ ## monitor.c utils.c audio_decoder.c video_decoder.c load_plugins.c libxine_la_SOURCES = metronom.c configfile.c monitor.c utils.c cpu_accel.c \ - load_plugins.c + load_plugins.c video_decoder.c audio_decoder.c libxine_la_DEPENDENCIES = libsdeps libxine_la_LIBADD = \ $(top_srcdir)/src/libmpeg2/libmpeg2.la \ @@ -18,16 +18,17 @@ libxine_la_LIBADD = \ ## $(top_srcdir)/src/libspudec/libspudec.la \ $(THREAD_LIBS) \ $(DYNAMIC_LD_LIBS) - -lXext -lm + -lm libxine_la_LDFLAGS = -version-info 5:0:5 -include_HEADERS = buffer.h metronom.h configfile.h \ - monitor.h cpu_accel.h attributes.h utils.h audio_decoder.h \ - video_decoder.h -noinst_HEADERS = xine_internal.h +#include_HEADERS = buffer.h metronom.h configfile.h \ +# monitor.h cpu_accel.h attributes.h utils.h audio_decoder.h -cpu_accel.lo: - $(CC) -DHAVE_CONFIG_H $(INCLUDES) -pipe `echo "@DEBUG_CFLAGS@" | sed -e 's/\-DDEBUG//' -e 's/\-g//'` -fomit-frame-pointer -Wall -Wp,-MD,.deps/cpu_accel.P -c $(basename $@).c -o $@ +noinst_HEADERS = xine_internal.h buffer.h metronom.h configfile.h \ + monitor.h cpu_accel.h attributes.h utils.h audio_decoder.h + +#cpu_accel.lo: +# $(CC) -DHAVE_CONFIG_H $(INCLUDES) -pipe `echo "@DEBUG_CFLAGS@" | sed -e 's/\-DDEBUG//' -e 's/\-g//'` -fomit-frame-pointer -Wall -Wp,-MD,.deps/cpu_accel.P -c $(basename $@).c -o $@ # echo timestamp > $(basename $@).o |