Skip to content

Commit

Permalink
Moved sources into src directory.
Browse files Browse the repository at this point in the history
  • Loading branch information
dynamite1981 committed Nov 29, 2002
1 parent 9012a16 commit 9e7477d
Show file tree
Hide file tree
Showing 6 changed files with 21 additions and 18 deletions.
4 changes: 0 additions & 4 deletions .cvsignore
Original file line number Diff line number Diff line change
@@ -1,17 +1,13 @@
.deps
.libs
INSTALL
Makefile
Makefile.in
aclocal.m4
*.lo
autom4te.cache
config.log
config.status
configure
depcomp
install-sh
*.la
libtool
missing
mkinstalldirs
12 changes: 1 addition & 11 deletions Makefile.am
Original file line number Diff line number Diff line change
@@ -1,13 +1,3 @@
libdir = @XMMS_INPUT_PLUGIN_DIR@

lib_LTLIBRARIES = libadplugxmms.la

libadplugxmms_la_LDFLAGS = -lstdc++ -module -avoid-version

libadplugxmms_la_SOURCES = adplug-xmms.cc

libadplugxmms_la_LIBADD = @XMMS_LIBS@ @PTHREAD_LIBS@

AM_CPPFLAGS = @XMMS_CFLAGS@ @PTHREAD_CFLAGS@
SUBDIRS = src

AUTOMAKE_OPTIONS = dist-bzip2
6 changes: 3 additions & 3 deletions configure.in
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
# Tell autoconf we're compiling a dynamic dlopen()'d C++ library (also
# called 'plugin' ;) ) using automake and libtool.
AC_INIT(adplug-xmms,1.0)
AC_CONFIG_SRCDIR(adplug-xmms.cc)
AC_CONFIG_FILES(Makefile)
AC_INIT(adplug-xmms,1.1)
AC_CONFIG_SRCDIR(src/adplug-xmms.cc)
AC_CONFIG_FILES(Makefile src/Makefile)
AM_INIT_AUTOMAKE
AM_MAINTAINER_MODE
AM_DISABLE_STATIC
Expand Down
6 changes: 6 additions & 0 deletions src/.cvsignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
.deps
.libs
Makefile
Makefile.in
*.lo
*.la
11 changes: 11 additions & 0 deletions src/Makefile.am
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
libdir = @XMMS_INPUT_PLUGIN_DIR@

lib_LTLIBRARIES = libadplugxmms.la

libadplugxmms_la_LDFLAGS = -lstdc++ -module -avoid-version

libadplugxmms_la_SOURCES = adplug-xmms.cc

libadplugxmms_la_LIBADD = @XMMS_LIBS@ @PTHREAD_LIBS@

AM_CPPFLAGS = @XMMS_CFLAGS@ @PTHREAD_CFLAGS@
File renamed without changes.

0 comments on commit 9e7477d

Please sign in to comment.