From: Robert K. <may...@us...> - 2004-02-04 07:12:27
|
Update of /cvsroot/bitcollider/bitcollider/vorbis In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv10470/vorbis Modified Files: Makefile.am Log Message: Reworked the stupid makefiles to not install modules twice. Index: Makefile.am =================================================================== RCS file: /cvsroot/bitcollider/bitcollider/vorbis/Makefile.am,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -r1.5 -r1.6 *** Makefile.am 2 Feb 2004 01:56:08 -0000 1.5 --- Makefile.am 4 Feb 2004 07:10:06 -0000 1.6 *************** *** 8,15 **** INCLUDES = -I$(top_srcdir)/.. -I$(top_srcdir)/ver -I$(top_srcdir)/include ! lib_LTLIBRARIES = libvorbisplugin.la ! libvorbisplugin_la_SOURCES = vorbis.c vorbis.h ! libvorbisplugin_la_LDFLAGS = -module -avoid-version ! libvorbisplugin_la_LIBADD = @VORBIS_LIBS@ noinst_HEADERS = vorbis.h --- 8,15 ---- INCLUDES = -I$(top_srcdir)/.. -I$(top_srcdir)/ver -I$(top_srcdir)/include ! lib_LTLIBRARIES = vorbisplugin.la ! vorbisplugin_la_SOURCES = vorbis.c vorbis.h ! vorbisplugin_la_LDFLAGS = -module -avoid-version ! vorbisplugin_la_LIBADD = @VORBIS_LIBS@ noinst_HEADERS = vorbis.h *************** *** 18,22 **** mkdir -p $(top_srcdir)/plugins rm -f $(top_srcdir)/plugins/vorbis.bcp ! ln -s $(top_srcdir)/vorbis/.libs/libvorbisplugin $(top_srcdir)/plugins/vorbis.bcp clean distclean: --- 18,24 ---- mkdir -p $(top_srcdir)/plugins rm -f $(top_srcdir)/plugins/vorbis.bcp ! ln -s $(top_srcdir)/vorbis/.libs/vorbisplugin $(top_srcdir)/plugins/vorbis.bcp ! ! install-exec-am: clean distclean: |