From: Paul Brossier Date: Fri, 20 Dec 2013 04:28:20 +0000 (-0500) Subject: remove old autotools stuff X-Git-Tag: 0.3~1 X-Git-Url: https://git.aubio.org/?a=commitdiff_plain;h=dad54a1caa7d6c663bd4b203c2529da1580d0a16;p=pd-aubio.git remove old autotools stuff --- diff --git a/Makefile.am b/Makefile.am deleted file mode 100644 index 760cb4a..0000000 --- a/Makefile.am +++ /dev/null @@ -1,68 +0,0 @@ -## Process this file with automake to produce Makefile.in. -*-Makefile-*- -# inspired from Guenter Geiger's Makefile.am for plugin -# pure-data/externals/plugin~/Makefile.am -- rev 1.1 - -pddir = $(prefix)/lib/pd - -## Make and install the shared library. -pdinstalldir = $(pddir)/extra -pdinstallrefdir = $(pddir)/doc/5.reference -pdinstallexpdir = $(pddir)/doc/aubio - -if MINGW -PDEXT = aubio.dll -else -if DARWIN -PDEXT = aubio.pd_darwin -else -PDEXT = aubio.pd_linux -endif -endif - -pdinstall_PROGRAMS = $(PDEXT) - -ALLSOURCES = \ - aubio_setup.c \ - aubioonset~.c \ - aubiotempo~.c \ - aubiotss~.c \ - aubioquiet~.c \ - aubiopitch~.c \ - aubiozcr~.c - -aubio_pd_linux_SOURCES = $(ALLSOURCES) -aubio_pd_darwin_SOURCES = $(ALLSOURCES) -aubio_dll_SOURCES = $(ALLSOURCES) - -pdincludedir = $(pddir)/src - -AM_CFLAGS = -I$(top_srcdir)/src -I$(pdincludedir) -DPD @AUBIO_CFLAGS@ -if MINGW -else -AM_CFLAGS += -fPIC -DPIC -endif - -AM_LDFLAGS = -L$(top_builddir)/src @AUBIO_LIBS@ -if MINGW -AM_LDFLAGS += -export_dynamic -shared -lpd -else -if DARWIN -AM_LDFLAGS += -bundle -undefined suppress -flat_namespace -else -AM_LDFLAGS += --export_dynamic --shared -endif -endif - -## Install the documentation. - -pdinstallref_DATA = \ - help/aubioonset~-help.pd \ - help/aubioquiet~-help.pd \ - help/aubiotempo~-help.pd \ - help/aubiotss~-help.pd \ - help/aubiopitch~-help.pd - -pdinstallexp_DATA = \ - examples/onset-cam.pd - -EXTRA_DIST = $(pdinstallref_DATA) $(pdinstallexp_DATA) diff --git a/configure.ac b/configure.ac deleted file mode 100644 index 9223750..0000000 --- a/configure.ac +++ /dev/null @@ -1,41 +0,0 @@ -dnl Process this file with autoconf to produce a configure script - -dnl Init autoconf -AC_INIT([pd-aubio], [0.2]) -AC_CONFIG_SRCDIR([aubio_setup.c]) - -dnl Init automake -AM_INIT_AUTOMAKE([dist-bzip2 no-define]) - -dnl Check for Puredata -AC_CHECK_HEADER([m_pd.h],PUREDATA=y,AC_MSG_WARN([Puredata header not found.])) -AM_CONDITIONAL(PUREDATAFOUND, test "${PUREDATA}" = "y") - -dnl Check for pkg-config -AC_PATH_PROG(PKG_CONFIG,pkg-config,no) - -dnl Check for aubio -PKG_CHECK_MODULES(AUBIO, aubio >= 0.4.0, HAVE_AUBIO=1) - -AM_CONDITIONAL(MINGW, false) -AM_CONDITIONAL(DARWIN, false) -case "${host}" in -*mingw* | *cygwin*) - mingw32_support="yes" - AC_CHECK_HEADER(windows.h) - AM_CONDITIONAL(MINGW, true) - LDFLAGS="$LDFLAGS -no-undefined" - ;; -*darwin* | *rhapsody* | *macosx*) - AC_ISC_POSIX - AM_CONDITIONAL(DARWIN, true) - ;; -*) - AC_ISC_POSIX - ;; -esac - -dnl Create Makefiles -AC_OUTPUT([ - Makefile -])