From 0d5cdb189ed17a3de4ec37a40e2db83d50dd209a Mon Sep 17 00:00:00 2001 From: Nedko Arnaudov Date: Tue, 27 Jan 2009 02:35:09 +0200 Subject: [PATCH] Remove autohell --- Makefile.am | 35 --------------------- autogen.sh | 17 ----------- configure.in | 95 --------------------------------------------------------- src/Makefile.am | 81 ------------------------------------------------ 4 files changed, 228 deletions(-) delete mode 100644 Makefile.am delete mode 100755 autogen.sh delete mode 100644 configure.in delete mode 100644 src/Makefile.am diff --git a/Makefile.am b/Makefile.am deleted file mode 100644 index f31bc8a..0000000 --- a/Makefile.am +++ /dev/null @@ -1,35 +0,0 @@ -## Process this file with automake to produce Makefile.in - -SUBDIRS = src - -EXTRA_DIST = autogen.sh extra/knob.png extra/switch.png extra/newknob.png extra/slider.png extra/bg.png - -##dist_pkgdata_DATA = - -dssidir = @dssidir@ -guidir=$(dssidir)/nekobee -gui_DATA = extra/knob.png extra/switch.png extra/newknob.png extra/slider.png extra/bg.png - -AUTOMAKE_OPTIONS = foreign - -##X install-data-local: -##X @$(NORMAL_INSTALL) -##X if test -d $(srcdir)/pixmaps; then \ -##X $(mkinstalldirs) $(DESTDIR)$(pkgdatadir)/pixmaps; \ -##X for pixmap in $(srcdir)/pixmaps/*; do \ -##X if test -f $$pixmap; then \ -##X $(INSTALL_DATA) $$pixmap $(DESTDIR)$(pkgdatadir)/pixmaps; \ -##X fi \ -##X done \ -##X fi -##X -##X dist-hook: -##X if test -d pixmaps; then \ -##X mkdir $(distdir)/pixmaps; \ -##X for pixmap in pixmaps/*; do \ -##X if test -f $$pixmap; then \ -##X cp -p $$pixmap $(distdir)/pixmaps; \ -##X fi \ -##X done \ -##X fi - diff --git a/autogen.sh b/autogen.sh deleted file mode 100755 index 43c03dc..0000000 --- a/autogen.sh +++ /dev/null @@ -1,17 +0,0 @@ -#!/bin/sh - -WANT_AUTOMAKE=1.7 -export WANT_AUTOMAKE - -echo "=============== running libtoolize --force --copy" && - libtoolize --force --copy && - echo "=============== running aclocal" && - aclocal && - echo "=============== running autoheader" && - autoheader && - echo "=============== running automake --add-missing --foreign" && - automake --add-missing --foreign && - echo "=============== running autoconf" && - autoconf && - echo "=============== done" - diff --git a/configure.in b/configure.in deleted file mode 100644 index 376b634..0000000 --- a/configure.in +++ /dev/null @@ -1,95 +0,0 @@ -dnl Process this file with autoconf to produce a configure script. - -AC_INIT(nekobee, 0.1.x, gordon@gjcp.net) - -AC_CONFIG_SRCDIR(src/nekobee-dssi.c) -AM_INIT_AUTOMAKE -AM_CONFIG_HEADER(config.h) - -AC_ISC_POSIX -AC_PROG_CC -AM_PROG_CC_STDC -AC_HEADER_STDC - -AC_ENABLE_STATIC(no) -AC_ENABLE_SHARED(yes) -AC_LIBTOOL_DLOPEN -dnl AC_DISABLE_STATIC -AC_PROG_LIBTOOL - -AC_C_BIGENDIAN - -dnl Check for GTK+ -AC_ARG_WITH(gtk2, AC_HELP_STRING([--with-gtk2], [use GTK+ 2.0 default=yes]), - [ if test $withval = "yes"; then try_gtk2=yes ; - else try_gtk2=no ; fi ], try_gtk2=yes) -with_gtk=no -dnl First look for GTK+ 2.x, unless '--without-gtk2' was specified. -if test "x${try_gtk2}" = 'xyes'; then - AM_PATH_GTK_2_0(2.0.0, with_gtk='yes (version 2.0)', with_gtk=no) -fi -AM_CONDITIONAL(BUILD_GUI, test "x${with_gtk}" != 'xno') -echo "GTK support: $with_gtk" - -dnl Require DSSI and liblo -PKG_CHECK_MODULES(MODULE, dssi >= 0.9 liblo >= 0.12) - -PKG_CHECK_MODULES(LV2_DEPS, lv2core >= 1, LV2_ENABLED="yes", LV2_ENABLED="no") - -if test "$LV2_ENABLED" = "yes"; then - AC_MSG_CHECKING([whether to allow LV2]) - AC_ARG_WITH(lv2, - AC_HELP_STRING([--without-lv2],[disable LV2 interface]), - [if test "$withval" = "no"; then LV2_ENABLED="no"; fi],[]) - AC_MSG_RESULT($LV2_ENABLED) -fi - -if test "$LV2_ENABLED" == "yes"; then - AC_MSG_CHECKING(where to install LV2 plugins) - AC_ARG_WITH(lv2_dir, - AC_HELP_STRING([--with-lv2-dir],[install LV2 calf.lv2 bundle to DIR (default=$prefix/lib/lv2/)]), - , - [with_lv2_dir="$prefix/lib/lv2/"]) - AC_MSG_RESULT($with_lv2_dir) - AC_SUBST(with_lv2_dir) -fi - -AM_CONDITIONAL(USE_LV2, test "$LV2_ENABLED" = "yes") - -if test "$LV2_ENABLED" = "yes"; then - AC_DEFINE(USE_LV2, 1, [LV2 support]) -fi - -AC_MSG_CHECKING([where to install DSSI plugins]) -AC_ARG_WITH(dssi-dir, AS_HELP_STRING([--with-dssi-dir=DIR], [the directory that -DSSI plugins should be installed in]), [dssidir=$withval], [dssidir=$libdir/dssi -]) -AC_MSG_RESULT($dssidir) -AC_SUBST(dssidir) - -dnl Use lotsa flags if we have gcc. -dnl !FIX! the '-finline-limit=5000' is apparently a problem for gcc 2.9x? -CFLAGS="$CFLAGS $MODULE_CFLAGS" -LDFLAGS="$LDFLAGS $MODULE_LIBS" -changequote(,)dnl -if test "x$GCC" = "xyes"; then - case " $CFLAGS " in - *[\ \ ]-Wall[\ \ ]*) ;; - *) CFLAGS="$CFLAGS -Wall" ;; - esac - case " $CFLAGS " in - *[\ \ ]-O[1-9][\ \ ]*) ;; - *) CFLAGS="$CFLAGS -O2" ;; - esac - case " $CFLAGS " in - *[\ \ ]-ffast-math[\ \ ]*) ;; - *) CFLAGS="$CFLAGS -fomit-frame-pointer -funroll-loops -finline-functions -ffast-math -finline-limit=5000 -Winline" ;; - esac -fi -changequote([,])dnl - -AC_OUTPUT([ -Makefile -src/Makefile -]) - diff --git a/src/Makefile.am b/src/Makefile.am deleted file mode 100644 index 3a186a5..0000000 --- a/src/Makefile.am +++ /dev/null @@ -1,81 +0,0 @@ -## Process this file with automake to produce Makefile.in - -if BUILD_GUI -bin_PROGRAMS = nekobee_gtk -else -bin_PROGRAMS = -endif - -bindir = $(dssidir)/nekobee -plugindir = $(dssidir) - -plugin_LTLIBRARIES = nekobee.la - -nekobee_la_LDFLAGS = -module -avoid-version -Wc,-nostartfiles - -nekobee_gtk_SOURCES = \ - gtk/callbacks.c \ - gtk/callbacks.h \ - gtk/data.c \ - gtk/data.h \ - gtk/interface.c \ - gtk/interface.h \ - gtk/knob.c \ - gtk/knob.h \ - gtk/slider.c \ - gtk/slider.h \ - gtk/main.c \ - gtk/main.h \ - nekobee.h \ - nekobee_data.c \ - nekobee_ports.c \ - nekobee_ports.h \ - nekobee_synth.h \ - nekobee_types.h \ - nekobee_voice.h - -nekobee_gtk_CFLAGS = @GTK_CFLAGS@ $(AM_CFLAGS) -DINSTALL_DIR=\"$(bindir)\" - -nekobee_gtk_LDADD = @GTK_LIBS@ -lm -llo -lpthread - -nekobee_la_SOURCES = \ - gui_data.h \ - nekobee-dssi.c \ - nekobee.h \ - nekobee_data.c \ - nekobee_ports.c \ - nekobee_ports.h \ - nekobee_synth.c \ - nekobee_synth.h \ - nekobee_types.h \ - nekobee_voice.c \ - nekobee_voice.h \ - nekobee_voice_render.c \ - minblep_tables.c - -nekobee_la_LIBADD = -lm - -if USE_LV2 -lv2_ui_dssi_la_SOURCES = lv2_ui_dssi.c - -lv2_ui_dssi_la_CFLAGS = -DUI_EXECUTABLE='"nekobee_gtk"' -lv2_ui_dssi_la_CFLAGS += -DUI_URI='"http://nekosynth.co.uk/wiki/nekobee-dssi-gui"' - -lv2_ui_dssi_la_LDFLAGS = -module -avoid-version -Wc,-nostartfiles -lv2_ui_dssi_LDADD = -llo -lpthread - -lv2_ui_dssi_LTLIBRARIES = lv2_ui_dssi.la -lv2_ui_dssidir = $(DESTDIR)$(with_lv2_dir)/nekobee.lv2/ -endif - -install-data-hook: -if USE_LV2 - install -d -m 755 $(DESTDIR)$(with_lv2_dir)/nekobee.lv2 - install -c -m 644 $(top_builddir)/src/*.ttl $(DESTDIR)$(with_lv2_dir)/nekobee.lv2/ - install -c -m 755 $(top_builddir)/src/.libs/nekobee.so $(DESTDIR)$(with_lv2_dir)/nekobee.lv2/ - install -c -m 755 $(top_builddir)/src/.libs/lv2_ui_dssi.so $(DESTDIR)$(with_lv2_dir)/nekobee.lv2/ - install -c -m 755 $(top_builddir)/src/nekobee_gtk $(DESTDIR)$(with_lv2_dir)/nekobee.lv2/ - install -c -m 644 $(top_srcdir)/extra/newknob.png $(DESTDIR)$(with_lv2_dir)/nekobee.lv2/ - install -c -m 644 $(top_srcdir)/extra/slider.png $(DESTDIR)$(with_lv2_dir)/nekobee.lv2/ - install -c -m 644 $(top_srcdir)/extra/bg.png $(DESTDIR)$(with_lv2_dir)/nekobee.lv2/ -endif -- 2.11.4.GIT