From b4f31b2bb91a5cf4d6cd38e3fb3963182fb86746 Mon Sep 17 00:00:00 2001 From: David Robillard Date: Fri, 3 Oct 2008 01:32:43 +0000 Subject: Good riddance. git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@1602 a436a847-0d15-0410-975c-d299462d15a1 --- INSTALL | 229 --------------------- Makefile.am | 9 - acinclude.m4 | 1 - autogen.sh | 11 - configure.ac | 365 --------------------------------- patches/Makefile.am | 23 --- src/Makefile.am | 4 - src/bindings/Makefile.am | 37 ---- src/client/Makefile.am | 69 ------- src/common/Makefile.am | 2 - src/common/interface/Makefile.am | 13 -- src/common/lv2ext/Makefile.am | 1 - src/engine/Makefile.am | 203 ------------------ src/engine/events/Makefile.am | 63 ------ src/gui/Makefile.am | 125 ----------- src/ingen/Makefile.am | 30 --- src/module/Makefile.am | 22 -- src/scripts/Makefile.am | 2 - src/scripts/python/Makefile.am | 4 - src/scripts/python/scripts/Makefile.am | 2 - src/scripts/supercollider/Makefile.am | 2 - src/serialisation/Makefile.am | 24 --- src/shared/Makefile.am | 22 -- 23 files changed, 1263 deletions(-) delete mode 100644 INSTALL delete mode 100644 Makefile.am delete mode 120000 acinclude.m4 delete mode 100755 autogen.sh delete mode 100644 configure.ac delete mode 100644 patches/Makefile.am delete mode 100644 src/Makefile.am delete mode 100644 src/bindings/Makefile.am delete mode 100644 src/client/Makefile.am delete mode 100644 src/common/Makefile.am delete mode 100644 src/common/interface/Makefile.am delete mode 100644 src/common/lv2ext/Makefile.am delete mode 100644 src/engine/Makefile.am delete mode 100644 src/engine/events/Makefile.am delete mode 100644 src/gui/Makefile.am delete mode 100644 src/ingen/Makefile.am delete mode 100644 src/module/Makefile.am delete mode 100644 src/scripts/Makefile.am delete mode 100644 src/scripts/python/Makefile.am delete mode 100644 src/scripts/python/scripts/Makefile.am delete mode 100644 src/scripts/supercollider/Makefile.am delete mode 100644 src/serialisation/Makefile.am delete mode 100644 src/shared/Makefile.am diff --git a/INSTALL b/INSTALL deleted file mode 100644 index 54caf7c1..00000000 --- a/INSTALL +++ /dev/null @@ -1,229 +0,0 @@ -Copyright (C) 1994, 1995, 1996, 1999, 2000, 2001, 2002 Free Software -Foundation, Inc. - - This file is free documentation; the Free Software Foundation gives -unlimited permission to copy, distribute and modify it. - -Basic Installation -================== - - These are generic installation instructions. - - The `configure' shell script attempts to guess correct values for -various system-dependent variables used during compilation. It uses -those values to create a `Makefile' in each directory of the package. -It may also create one or more `.h' files containing system-dependent -definitions. Finally, it creates a shell script `config.status' that -you can run in the future to recreate the current configuration, and a -file `config.log' containing compiler output (useful mainly for -debugging `configure'). - - It can also use an optional file (typically called `config.cache' -and enabled with `--cache-file=config.cache' or simply `-C') that saves -the results of its tests to speed up reconfiguring. (Caching is -disabled by default to prevent problems with accidental use of stale -cache files.) - - If you need to do unusual things to compile the package, please try -to figure out how `configure' could check whether to do them, and mail -diffs or instructions to the address given in the `README' so they can -be considered for the next release. If you are using the cache, and at -some point `config.cache' contains results you don't want to keep, you -may remove or edit it. - - The file `configure.ac' (or `configure.in') is used to create -`configure' by a program called `autoconf'. You only need -`configure.ac' if you want to change it or regenerate `configure' using -a newer version of `autoconf'. - -The simplest way to compile this package is: - - 1. `cd' to the directory containing the package's source code and type - `./configure' to configure the package for your system. If you're - using `csh' on an old version of System V, you might need to type - `sh ./configure' instead to prevent `csh' from trying to execute - `configure' itself. - - Running `configure' takes awhile. While running, it prints some - messages telling which features it is checking for. - - 2. Type `make' to compile the package. - - 3. Optionally, type `make check' to run any self-tests that come with - the package. - - 4. Type `make install' to install the programs and any data files and - documentation. - - 5. You can remove the program binaries and object files from the - source code directory by typing `make clean'. To also remove the - files that `configure' created (so you can compile the package for - a different kind of computer), type `make distclean'. There is - also a `make maintainer-clean' target, but that is intended mainly - for the package's developers. If you use it, you may have to get - all sorts of other programs in order to regenerate files that came - with the distribution. - -Compilers and Options -===================== - - Some systems require unusual options for compilation or linking that -the `configure' script does not know about. Run `./configure --help' -for details on some of the pertinent environment variables. - - You can give `configure' initial values for configuration parameters -by setting variables in the command line or in the environment. Here -is an example: - - ./configure CC=c89 CFLAGS=-O2 LIBS=-lposix - - *Note Defining Variables::, for more details. - -Compiling For Multiple Architectures -==================================== - - You can compile the package for more than one kind of computer at the -same time, by placing the object files for each architecture in their -own directory. To do this, you must use a version of `make' that -supports the `VPATH' variable, such as GNU `make'. `cd' to the -directory where you want the object files and executables to go and run -the `configure' script. `configure' automatically checks for the -source code in the directory that `configure' is in and in `..'. - - If you have to use a `make' that does not support the `VPATH' -variable, you have to compile the package for one architecture at a -time in the source code directory. After you have installed the -package for one architecture, use `make distclean' before reconfiguring -for another architecture. - -Installation Names -================== - - By default, `make install' will install the package's files in -`/usr/local/bin', `/usr/local/man', etc. You can specify an -installation prefix other than `/usr/local' by giving `configure' the -option `--prefix=PATH'. - - You can specify separate installation prefixes for -architecture-specific files and architecture-independent files. If you -give `configure' the option `--exec-prefix=PATH', the package will use -PATH as the prefix for installing programs and libraries. -Documentation and other data files will still use the regular prefix. - - In addition, if you use an unusual directory layout you can give -options like `--bindir=PATH' to specify different values for particular -kinds of files. Run `configure --help' for a list of the directories -you can set and what kinds of files go in them. - - If the package supports it, you can cause programs to be installed -with an extra prefix or suffix on their names by giving `configure' the -option `--program-prefix=PREFIX' or `--program-suffix=SUFFIX'. - -Optional Features -================= - - Some packages pay attention to `--enable-FEATURE' options to -`configure', where FEATURE indicates an optional part of the package. -They may also pay attention to `--with-PACKAGE' options, where PACKAGE -is something like `gnu-as' or `x' (for the X Window System). The -`README' should mention any `--enable-' and `--with-' options that the -package recognizes. - - For packages that use the X Window System, `configure' can usually -find the X include and library files automatically, but if it doesn't, -you can use the `configure' options `--x-includes=DIR' and -`--x-libraries=DIR' to specify their locations. - -Specifying the System Type -========================== - - There may be some features `configure' cannot figure out -automatically, but needs to determine by the type of machine the package -will run on. Usually, assuming the package is built to be run on the -_same_ architectures, `configure' can figure that out, but if it prints -a message saying it cannot guess the machine type, give it the -`--build=TYPE' option. TYPE can either be a short name for the system -type, such as `sun4', or a canonical name which has the form: - - CPU-COMPANY-SYSTEM - -where SYSTEM can have one of these forms: - - OS KERNEL-OS - - See the file `config.sub' for the possible values of each field. If -`config.sub' isn't included in this package, then this package doesn't -need to know the machine type. - - If you are _building_ compiler tools for cross-compiling, you should -use the `--target=TYPE' option to select the type of system they will -produce code for. - - If you want to _use_ a cross compiler, that generates code for a -platform different from the build platform, you should specify the -"host" platform (i.e., that on which the generated programs will -eventually be run) with `--host=TYPE'. - -Sharing Defaults -================ - - If you want to set default values for `configure' scripts to share, -you can create a site shell script called `config.site' that gives -default values for variables like `CC', `cache_file', and `prefix'. -`configure' looks for `PREFIX/share/config.site' if it exists, then -`PREFIX/etc/config.site' if it exists. Or, you can set the -`CONFIG_SITE' environment variable to the location of the site script. -A warning: not all `configure' scripts look for a site script. - -Defining Variables -================== - - Variables not defined in a site shell script can be set in the -environment passed to `configure'. However, some packages may run -configure again during the build, and the customized values of these -variables may be lost. In order to avoid this problem, you should set -them in the `configure' command line, using `VAR=value'. For example: - - ./configure CC=/usr/local2/bin/gcc - -will cause the specified gcc to be used as the C compiler (unless it is -overridden in the site shell script). - -`configure' Invocation -====================== - - `configure' recognizes the following options to control how it -operates. - -`--help' -`-h' - Print a summary of the options to `configure', and exit. - -`--version' -`-V' - Print the version of Autoconf used to generate the `configure' - script, and exit. - -`--cache-file=FILE' - Enable the cache: use and save the results of the tests in FILE, - traditionally `config.cache'. FILE defaults to `/dev/null' to - disable caching. - -`--config-cache' -`-C' - Alias for `--cache-file=config.cache'. - -`--quiet' -`--silent' -`-q' - Do not print messages saying which checks are being made. To - suppress all normal output, redirect it to `/dev/null' (any error - messages will still be shown). - -`--srcdir=DIR' - Look for the package's source code in directory DIR. Usually - `configure' can determine that directory automatically. - -`configure' also accepts some other, not widely useful, options. Run -`configure --help' for more details. - diff --git a/Makefile.am b/Makefile.am deleted file mode 100644 index 62b373db..00000000 --- a/Makefile.am +++ /dev/null @@ -1,9 +0,0 @@ -SUBDIRS = src patches - -doc: doc/Doxyfile \ -src/common/interface/*.hpp \ -src/libs/engine/*.hpp src/libs/engine/*.cpp \ -src/libs/client/*.hpp src/libs/client/*.cpp \ -src/libs/gui/*.hpp src/libs/gui/*.cpp \ -src/libs/serialisation/*.hpp src/libs/serialisation/*.cpp - doxygen doc/Doxyfile diff --git a/acinclude.m4 b/acinclude.m4 deleted file mode 120000 index d84c32a3..00000000 --- a/acinclude.m4 +++ /dev/null @@ -1 +0,0 @@ -../acinclude.m4 \ No newline at end of file diff --git a/autogen.sh b/autogen.sh deleted file mode 100755 index 25cfb35c..00000000 --- a/autogen.sh +++ /dev/null @@ -1,11 +0,0 @@ -#!/bin/sh - -echo 'Generating necessary files...' -rm -rf config -mkdir -p config -libtoolize --force -aclocal -autoheader -Wall -automake --foreign --add-missing -Wall -autoconf - diff --git a/configure.ac b/configure.ac deleted file mode 100644 index 70833309..00000000 --- a/configure.ac +++ /dev/null @@ -1,365 +0,0 @@ -AC_PREREQ(2.59) -AC_INIT([ingen],[svn],[dave@drobilla.net]) - -AC_CONFIG_AUX_DIR([config]) - - -################### SOURCES - -# Ingen -AC_CONFIG_SRCDIR([src/client/OSCController.cpp]) -AC_CONFIG_SRCDIR([src/common/interface/EngineInterface.hpp]) -AC_CONFIG_SRCDIR([src/common/lv2ext/lv2-miditype.h]) -AC_CONFIG_SRCDIR([src/engine/JackAudioDriver.cpp]) -AC_CONFIG_SRCDIR([src/gui/App.cpp]) -AC_CONFIG_SRCDIR([src/ingen/main.cpp]) -AC_CONFIG_SRCDIR([src/module/Module.cpp]) -AC_CONFIG_SRCDIR([src/serialisation/Loader.cpp]) -AC_CONFIG_SRCDIR([src/shared/LV2URIMap.cpp]) - -AC_CONFIG_HEADER([config/config.h]) - -AM_INIT_AUTOMAKE - -#################### ENVIRONMENT - -AC_LANG([C++]) - -AC_PROG_CXX -AM_PROG_CC_C_O - -AC_DISABLE_STATIC -AC_PROG_LIBTOOL - -PKG_CHECK_MODULES(GLIBMM, glibmm-2.4) -PKG_CHECK_MODULES(GTHREAD, gthread-2.0) - -# Check for boost smart pointers -AC_CHECK_HEADERS([boost/shared_ptr.hpp], [], - AC_MSG_ERROR([You need the boost headers package (e.g. libboost-dev)])) -AC_CHECK_HEADERS([boost/weak_ptr.hpp], [], - AC_MSG_ERROR([You need the boost headers package (e.g. libboost-dev)])) - -# This is cute... autohell FTW -builddir=`pwd` -cd $srcdir -abs_srcdir=`pwd` -cd $builddir - -PKG_CHECK_MODULES([SLV2], [slv2]) -PKG_CHECK_MODULES([RAUL], [raul]) -PKG_CHECK_MODULES([FLOWCANVAS], [flowcanvas]) - -CONFIG_H_PATH="$builddir/config/config.h" - -LV2_OSC_CFLAGS="$LV2CORE_CFLAGS -I$abs_srcdir/../lv2 -I$abs_srcdir/../lv2/lv2/event" -LV2_OSC_LIBS="$builddir/../lv2/lv2/osc/.libs/liblv2_osc.la" -AC_SUBST(LV2_OSC_CFLAGS) -AC_SUBST(LV2_OSC_LIBS) - - -INGEN_CFLAGS="-I$abs_srcdir/src/common -I$abs_srcdir/src/libs -I$abs_srcdir/src/libs/engine/events -I$abs_srcdir/src" -AC_SUBST(INGEN_CFLAGS) - -# Check for 64-bit platform -AC_CHECK_SIZEOF([void *]) - - -#################### COMMAND LINE PARAMETERS - -AC_ARG_ENABLE(debug, - [AS_HELP_STRING(--enable-debug, [Enable debugging symbols and assertions (no)])], - [debug="$enableval"]) -if test "$debug" = "yes"; then - debug_symbols="yes" - debug_assertions="yes" -fi - -AC_ARG_ENABLE(debug_symbols, - [AS_HELP_STRING(--enable-debug-symbols, [Enable debugging symbols - overrides CXXFLAGS (no)])], - [debug_symbols="$enableval"]) - -AC_ARG_ENABLE(debug_assertions, - [AS_HELP_STRING(--enable-debug-assertions, [Enable debugging assertions (no)])], - [debug_assertions="$enableval"]) - -if test "$debug_symbols" = "yes"; then - CFLAGS="-O0 -g" - CXXFLAGS="-O0 -g" -fi - -if test "$debug_assertions" = "yes"; then - CFLAGS="$CFLAGS -DDEBUG" - CXXFLAGS="$CXXFLAGS -DDEBUG" -else - CFLAGS="$CFLAGS -DNDEBUG" - CXXFLAGS="$CXXFLAGS -DNDEBUG" -fi - -assembly="yes" -AC_ARG_ENABLE(assembly, - [AS_HELP_STRING(--enable-assembly, [Use assembly code to fix denormals (yes)])], - [assembly="$enableval"]) -if test "$assembly" = "yes"; then - AC_DEFINE([USE_ASSEMBLY], 1, [Defined if assembly code should be used where possible]) -fi - -# Boost shared_ptr debugging -pointer_debug="no" -AC_ARG_ENABLE(pointer_debug, - [AS_HELP_STRING(--enable-pointer-debug, [Smart pointer debugging (DEVELOPERS ONLY) (no)])], - [pointer_debug="$enableval"]) -if test "$pointer_debug" = "yes"; then - CFLAGS="$CFLAGS -DBOOST_SP_ENABLE_DEBUG_HOOKS" - CXXFLAGS="$CXXFLAGS -DBOOST_SP_ENABLE_DEBUG_HOOKS" -fi - -# Use strict flags? -strict="no" -AC_ARG_ENABLE(strict, - [AS_HELP_STRING(--enable-strict, [Enable strict compiler warnings and errors (no)])], - [strict="$enableval"]) -if test "$strict" = "yes"; then - # Stupid Gtkmm won't build with -pedantic - CFLAGS="$CFLAGS -Wall -Wextra -Wno-unused-parameter -Winit-self" - CXXFLAGS="$CXXFLAGS -Wall -Wextra -Wno-unused-parameter -Winit-self -Woverloaded-virtual -Wsign-promo" -fi - -# Bolt on a few specific flags to CFLAGS that should always be used -CXXFLAGS="$CXXFLAGS -ansi -pipe -fmessage-length=999 -DCONFIG_H_PATH=\\\"$CONFIG_H_PATH\\\"" -CFLAGS="$CFLAGS -std=c99 -pipe -fmessage-length=999 -DCONFIG_H_PATH=\\\"$CONFIG_H_PATH\\\"" - - -#################### GENERIC OPTIONS - - -# Jack support -build_jack="yes" -AC_ARG_ENABLE(jack, - [AS_HELP_STRING(--enable-jack, [Enable Jack support (yes)])], - [ if test x$enable_jack = xno ; then build_jack=no ; fi ]) -if test "$build_jack" = "yes"; then - PKG_CHECK_MODULES(JACK, jack >= 0.107.0) - AC_DEFINE(HAVE_JACK, 1, [Has Jack]) - AC_DEFINE(HAVE_JACK_MIDI, 1, [Has Jack MIDI]) -fi - -# OSC support (mandatory for now due to laziness) -PKG_CHECK_MODULES(LIBLO, liblo >= 0.25) - -# HTTP support -build_http="yes" -AC_ARG_ENABLE(http, - [AS_HELP_STRING(--enable-http, [Build Ingen HTTP interface - Requires: libsoup])], - [ if test x$enable_http = xno ; then build_http=no ; fi ]) -if test "$build_http" = "yes"; then - PKG_CHECK_MODULES(SOUP, libsoup-2.4 >= 2.4.0, [build_http="yes"], [build_http="no"]) - if test "x$build_http" = "xyes"; then - AC_DEFINE([HAVE_SOUP], 1, [Defined if libsoup is available for HTTP support]) - fi -fi -AM_CONDITIONAL(WITH_SOUP, [test "$build_http" = "yes"]) - -# LV2 support -build_lv2="yes" -AC_ARG_ENABLE(lv2, - [AS_HELP_STRING(--enable-lv2, [Enable LV2 plugin support through libslv2 (yes) - Requires: libslv2])], - [ if test x$enable_lv2 = xno ; then build_lv2=no ; fi ]) -if test "$build_lv2" = "yes"; then - # Configure SLV2 (independent build system) -# AC_CONFIG_SUBDIRS([slv2]) - AC_DEFINE(HAVE_SLV2, 1, [Has libslv2]) -fi - -# Build LV2 GTK GUI -build_lv2_gui="yes" -AC_ARG_ENABLE(lv2-gui, - [AS_HELP_STRING(--enable-lv2-gui, [Build plugin GUIs (requires Gtk2)])], - [ if test x$enable_lv2_gui = xno ; then build_lv2_gui=no ; fi ]) -if test "$build_lv2_gui" = "yes"; then - PKG_CHECK_MODULES(GTK, gtk+-2.0) -fi -AM_CONDITIONAL(WITH_LV2_GUI, [test "$build_lv2_gui" = "yes"]) - - -# LADSPA support -build_ladspa="yes" -AC_ARG_ENABLE(ladspa, - [AS_HELP_STRING(--enable-ladspa, [Enable LADSPA plugin support (yes)])], - [ if test x$enable_ladspa = xno ; then build_ladspa=no ; fi ]) -if test "$build_ladspa" = "yes"; then - build_ladspa="no" - AC_CHECK_HEADER([ladspa.h], [build_ladspa="yes"], - [AC_MSG_WARN([You don't seem to build ladspa.h, Ingen will not be very useful!])]) -fi -if test "$build_ladspa" = "yes"; then - AC_DEFINE(HAVE_LADSPA, 1, [Has ladspa.h]) -fi - - -# LASH support -build_lash="yes" -AC_ARG_ENABLE(lash, - [AS_HELP_STRING(--enable-lash, [Enable LASH session management support (yes)])], - [ if test x$enable_lash = xno ; then build_lash=no ; fi ]) - -have_lash="no" -if test "$build_lash" = "yes"; then - PKG_CHECK_MODULES(LASH, lash-1.0 >= 0.5.2, have_lash="yes", have_lash="no") -fi -if test "$have_lash" = "yes"; then - AC_DEFINE(HAVE_LASH, 1, [Has lash.h]) -else - AC_MSG_WARN([LASH not found, session support will not be built.]) -fi - -# SWIG bindings -bindings="no" -AC_ARG_ENABLE(bindings, - [AS_HELP_STRING(--enable-bindings, [Build language bindings via SWIG (false)])], - [bindings="$enableval"]) -if test "$bindings" = "yes"; then - AC_CHECK_PROGS(SWIG, swig) -fi -AM_CONDITIONAL(WITH_SWIG, [test "$bindings" = "yes"]) -AC_DEFINE(WITH_BINDINGS, 1, [Building with SWIG language bindings]) - -AM_CONDITIONAL(WITH_LASH, [test "$have_lash" = "yes"]) -AM_CONDITIONAL(WITH_JACK, [test "$build_jack" = "yes"]) -AM_CONDITIONAL(BUILD_SERVER, [test "$build_ingen_server" = "yes"]) -AM_CONDITIONAL(BUILD_IN_PROCESS_ENGINE, [test "$build_in_process_engine" = "yes"]) -AM_CONDITIONAL(BUILD_UNIT_TESTS, [test "$build_unit_tests" = "yes"]) -AM_CONDITIONAL(WITH_LADSPA, [test "$build_ladspa" = "yes"]) -AM_CONDITIONAL(WITH_LV2, [test "$build_lv2" = "yes"]) - - -################# INGEN OPTIONS - -# Build support for running as an in-process jack client -build_in_process_engine="no" -AC_ARG_ENABLE([in-process-engine], - AS_HELP_STRING(--enable-in-process-engine, Build engine as an in-process Jack client (no)), - [ if test x$enable_in_process_engine = xyes ; then build_in_process_engine=yes ; fi ]) - -if test "$build_in_process_engine" = "yes"; then - AC_DEFINE(BUILD_IN_PROCESS_ENGINE, 1, [Whether to support running as a Jack in-process client]) -fi - -# Stand-alone engine (OSC controlled) -build_ingen_server="yes" -AC_ARG_ENABLE([ingen-server], - AS_HELP_STRING(--enable-server, Build OSC controlled stand-alone engine (yes)), - [ if test x$enable_server = xno ; then build_ingen_server=no ; fi ]) - -# Command-line clients -build_ingen_client_lib="yes" -AC_ARG_ENABLE([ingen-clients], - AS_HELP_STRING(--enable-ingen-clients, [Build Ingen client library (yes) - Requires: libxml2, raptor, libsigc++]), - [ if test x$enable_ingen_clients = xno ; then build_ingen_client_lib=no ; fi ]) - -# Gtk client (Ingenuity) -build_ingen_gtk_client="yes" -AC_ARG_ENABLE([ingen-gtk-client], - AS_HELP_STRING(--enable-ingen-gtk-client, [Build Ingen GTK client (true)]), - [ if test x$enable_gtk_client = xno ; then build_gtk_client=no ; fi ]) - -if test "$build_ingen_gtk_client" = "yes"; then - build_ingen_clients="yes" -fi - -# Clients -if test "$build_ingen_client_lib" = "yes"; then - AC_CHECK_HEADERS([sys/time.h unistd.h]) - PKG_CHECK_MODULES(LXML2, libxml-2.0 >= 2.6.0) # FIXME: deprecated, make optional - PKG_CHECK_MODULES(LSIGCPP, sigc++-2.0) - PKG_CHECK_MODULES(REDLANDMM, redlandmm) - # Explicitly check for a more recent librdf than redlandmm itself needs - PKG_CHECK_MODULES(REDLANDMM, redland >= 1.0.8) -else - AC_MSG_WARN([Ingen client library/executable will not be built!]) -fi -AM_CONDITIONAL(BUILD_INGEN_CLIENTS, [test "$build_ingen_clients" = "yes"]) -AM_CONDITIONAL(WITH_REDLANDMM, [test "$build_ingen_client_lib" = "yes"]) - -if test "$build_ingen_gtk_client" = "yes"; then -# AC_CHECK_HEADERS([sys/time.h unistd.h]) -# AC_CHECK_HEADERS([string.h sys/time.h unistd.h]) -# AC_HEADER_TIME -# AC_FUNC_ERROR_AT_LINE -# AC_FUNC_FORK -# AC_FUNC_MALLOC -# AC_FUNC_STAT -# AC_CHECK_FUNCS([gettimeofday mkdir strcasecmp strchr strdup strtol]) - - PKG_CHECK_MODULES(GTKMM, gtkmm-2.4 >= 2.11.12) - PKG_CHECK_MODULES(GNOMECANVASMM, libgnomecanvasmm-2.6) - PKG_CHECK_MODULES(LIBGLADEMM, libglademm-2.4) - #PKG_CHECK_MODULES(FLOWCANVAS, flowcanvas >= 0.1.0) - PKG_CHECK_MODULES(CURL, libcurl >= 7.15.0, build_curl="yes", build_curl="no") - if test "$build_curl" = "yes"; then - AC_DEFINE(HAVE_CURL, 1, [Has the libcurl library]) - fi -else - AC_MSG_WARN([GTK client will NOT be built!]) -fi -AM_CONDITIONAL(BUILD_GTK_CLIENT, [test "$build_ingen_gtk_client" = "yes"]) -AM_CONDITIONAL(WITH_CURL, [test "$build_curl" = "yes"]) - -# Build ingen client lib if anything above that depends on it is to be built -AM_CONDITIONAL(BUILD_CLIENT_LIB, [test "$build_ingen_clients" = "yes" -o "$build_ingen_gtk_client" = "yes"]) - - -#################### OUTPUT - -# Ingen -AC_CONFIG_FILES([Makefile]) -AC_CONFIG_FILES([doc/reference.doxygen]) -AC_CONFIG_FILES([patches/Makefile]) -AC_CONFIG_FILES([src/Makefile]) -AC_CONFIG_FILES([src/bindings/Makefile]) -AC_CONFIG_FILES([src/client/Makefile]) -AC_CONFIG_FILES([src/common/Makefile]) -AC_CONFIG_FILES([src/common/interface/Makefile]) -AC_CONFIG_FILES([src/common/lv2ext/Makefile]) -AC_CONFIG_FILES([src/engine/Makefile]) -AC_CONFIG_FILES([src/engine/events/Makefile]) -AC_CONFIG_FILES([src/gui/Makefile]) -AC_CONFIG_FILES([src/ingen/Makefile]) -AC_CONFIG_FILES([src/ingen/ingen.desktop]) -AC_CONFIG_FILES([src/module/Makefile]) -AC_CONFIG_FILES([src/scripts/Makefile]) -AC_CONFIG_FILES([src/scripts/python/Makefile]) -AC_CONFIG_FILES([src/scripts/python/scripts/Makefile]) -AC_CONFIG_FILES([src/scripts/supercollider/Makefile]) -AC_CONFIG_FILES([src/serialisation/Makefile]) -AC_CONFIG_FILES([src/shared/Makefile]) - -AC_OUTPUT - -AC_MSG_RESULT([]) -AC_MSG_RESULT([]) -AC_MSG_RESULT([**********************************************************************]) -AC_MSG_RESULT([Configuration:]) -AC_MSG_RESULT([]) -AC_MSG_RESULT([Jack support: $build_jack]) -AC_MSG_RESULT([LV2 Plugin support: $build_lv2]) -AC_MSG_RESULT([LADSPA Plugin support: $build_ladspa]) -AC_MSG_RESULT([]) -AC_MSG_RESULT([Ingen:]) -AC_MSG_RESULT([ Denormal fixes (assembly): $assembly]) -AC_MSG_RESULT([ Engine library/OSC server: $build_ingen_server]) -AC_MSG_RESULT([ JACK in-process engine: $build_in_process_engine]) -AC_MSG_RESULT([ Client library: $build_ingen_client_lib]) -AC_MSG_RESULT([ GTK GUI: $build_ingen_gtk_client]) -AC_MSG_RESULT([ OSC interface (via liblo): yes]) -AC_MSG_RESULT([ HTTP interface (libsoup): $build_http]) -AC_MSG_RESULT([ Language bindings: $bindings]) -AC_MSG_RESULT([]) -AC_MSG_RESULT([*** INGEN IS WITHOUT LASH SUPPORT AT THIS TIME ***]) -AC_MSG_RESULT([]) -AC_MSG_RESULT([C FLAGS: $CFLAGS]) -AC_MSG_RESULT([C++ FLAGS: $CXXFLAGS]) -AC_MSG_RESULT([Please note the above and see README for performance information.]) -AC_MSG_RESULT([**********************************************************************]) -AC_MSG_RESULT([]) - diff --git a/patches/Makefile.am b/patches/Makefile.am deleted file mode 100644 index 904dcc96..00000000 --- a/patches/Makefile.am +++ /dev/null @@ -1,23 +0,0 @@ -patchesdir = $(pkgdatadir)/patches - -dist_patches_DATA = \ - 303.om \ - broken_bass_synth.om \ - broken_oscillator.om \ - fm_operator.om \ - house_ensemble.om \ - karplus_strong_digeridoo.om \ - kick.om \ - organ.om \ - pad.om \ - saw_detuned.om \ - quick_bass.om \ - rhodes.om \ - saw_lp.om \ - sine.om \ - trance.om \ - wah_bass.om \ - hugebass.om \ - evildistbass.om \ - slapbass.om \ - meanbass.om diff --git a/src/Makefile.am b/src/Makefile.am deleted file mode 100644 index 7271529a..00000000 --- a/src/Makefile.am +++ /dev/null @@ -1,4 +0,0 @@ -SUBDIRS = shared module engine serialisation client gui ingen bindings - -DIST_SUBDIRS = $(SUBDIRS) common - diff --git a/src/bindings/Makefile.am b/src/bindings/Makefile.am deleted file mode 100644 index 016a6596..00000000 --- a/src/bindings/Makefile.am +++ /dev/null @@ -1,37 +0,0 @@ -FLAGS = @INGEN_CFLAGS@ @RAUL_CFLAGS@ @GLIBMM_CFLAGS@ -I$(top_srcdir)/ingen/src/common -LIBS = @RAUL_LIBS@ @GLIBMM_LIBS@ -lpython2.4 -AM_CXXFLAGS = -I/usr/include/python2.4 $(FLAGS) - -EXTRA_DIST = ingen.i test_ingen.py - -if WITH_SWIG -bindingsdir = $(libdir)/ingen -bindings_LTLIBRARIES = libingen_bindings.la -libingen_bindings_la_LDFLAGS = -no-undefined -module -avoid-version -libingen_bindings_la_LIBADD = @RAUL_LIBS@ @GLIBMM_LIBS@ #../libs/module/libingen_module.la -libingen_bindings_la_SOURCES = ingen_bindings.cpp ingen_bindings.hpp -nodist_libingen_bindings_la_SOURCES = ingen_wrap.cxx -libingen_bindings_la_CXXFLAGS = \ - @SLV2_CFLAGS@ @RAUL_CFLAGS@ @GLIBMM_CFLAGS@ \ - -I$(top_srcdir)/ingen/src/common \ - -I$(top_srcdir)/ingen/src/libs \ - -I/usr/include/python2.4 - -swig: ingen.i - swig -c++ -Wall $(FLAGS) -python ingen.i - -ingen_wrap.cxx: swig - -libingen_bindings_la: swig ingen_wrap.cxx ingen_bindings.cpp - -all-local: swig - ln -sf .libs/libingen_bindings.so _ingen.so - -#libtool --mode=compile g++ -fPIC -shared $(CXXFLAGS) $(FLAGS) $(LIBS) -I/usr/include/python2.4 ingen_wrap.cxx -o libingen_python.so.0.0.0 -endif - -clean-local: - rm -f *.cxx - rm -f *.so - rm -f *.o - rm -f ingen.py diff --git a/src/client/Makefile.am b/src/client/Makefile.am deleted file mode 100644 index 4af7c243..00000000 --- a/src/client/Makefile.am +++ /dev/null @@ -1,69 +0,0 @@ -if BUILD_CLIENT_LIB - - -moduledir = $(libdir)/ingen - -module_LTLIBRARIES = libingen_client.la - -libingen_client_la_CXXFLAGS = \ - -DPKGDATADIR=\"$(pkgdatadir)\" \ - @INGEN_CFLAGS@ \ - @GLIBMM_CFLAGS@ \ - @LIBLO_CFLAGS@ \ - @LSIGCPP_CFLAGS@ \ - @GLIBMM_CFLAGS@ \ - @LXML2_CFLAGS@ \ - @RAUL_CFLAGS@ \ - @REDLANDMM_CFLAGS@ \ - @SLV2_CFLAGS@ \ - @SOUP_CFLAGS@ - -libingen_client_la_LIBADD = \ - ../shared/libingen_shared.la \ - @GLIBMM_LIBS@ \ - @LIBLO_LIBS@ \ - @LSIGCPP_LIBS@ \ - @LXML2_LIBS@ \ - @RAUL_LIBS@ \ - @REDLANDMM_LIBS@ \ - @SLV2_LIBS@ \ - @SOUP_LIBS@ - -libingen_client_la_SOURCES = \ - ClientStore.cpp \ - ClientStore.hpp \ - ConnectionModel.hpp \ - DeprecatedLoader.cpp \ - DeprecatedLoader.hpp \ - NodeModel.cpp \ - NodeModel.hpp \ - OSCClientReceiver.cpp \ - OSCClientReceiver.hpp \ - OSCEngineSender.cpp \ - OSCEngineSender.hpp \ - ObjectModel.cpp \ - ObjectModel.hpp \ - PatchModel.cpp \ - PatchModel.hpp \ - PluginModel.cpp \ - PluginModel.hpp \ - PluginUI.cpp \ - PluginUI.hpp \ - PortModel.cpp \ - PortModel.hpp \ - SigClientInterface.hpp \ - ThreadedSigClientInterface.cpp \ - ThreadedSigClientInterface.hpp \ - client.cpp \ - client.hpp - -if WITH_SOUP -libingen_client_la_SOURCES += \ - HTTPClientReceiver.cpp \ - HTTPClientReceiver.hpp \ - HTTPEngineSender.cpp \ - HTTPEngineSender.hpp -endif - -endif # BUILD_CLIENT_LIB - diff --git a/src/common/Makefile.am b/src/common/Makefile.am deleted file mode 100644 index 676fa95d..00000000 --- a/src/common/Makefile.am +++ /dev/null @@ -1,2 +0,0 @@ -DIST_SUBDIRS = interface lv2ext - diff --git a/src/common/interface/Makefile.am b/src/common/interface/Makefile.am deleted file mode 100644 index 4649fd0b..00000000 --- a/src/common/interface/Makefile.am +++ /dev/null @@ -1,13 +0,0 @@ -EXTRA_DIST = \ - ClientInterface.hpp \ - CommonInterface.hpp \ - Connection.hpp \ - DataType.hpp \ - EngineInterface.hpp \ - EventType.hpp \ - GraphObject.hpp \ - Node.hpp \ - Patch.hpp \ - Plugin.hpp \ - Port.hpp \ - README diff --git a/src/common/lv2ext/Makefile.am b/src/common/lv2ext/Makefile.am deleted file mode 100644 index b66ffaaa..00000000 --- a/src/common/lv2ext/Makefile.am +++ /dev/null @@ -1 +0,0 @@ -noinst_HEADERS = lv2_event.h lv2_event_helpers.h lv2_uri_map.h diff --git a/src/engine/Makefile.am b/src/engine/Makefile.am deleted file mode 100644 index ca76dfc5..00000000 --- a/src/engine/Makefile.am +++ /dev/null @@ -1,203 +0,0 @@ -SUBDIRS = events - -MAINTAINERCLEANFILES = Makefile.in - -moduledir = $(libdir)/ingen - -module_LTLIBRARIES = libingen_engine.la -libingen_engine_la_CXXFLAGS = \ - @GLIBMM_CFLAGS@ \ - @INGEN_CFLAGS@ \ - @JACK_CFLAGS@ \ - @LIBLO_CFLAGS@ \ - @RAUL_CFLAGS@ \ - @REDLANDMM_CFLAGS@ \ - @SLV2_CFLAGS@ \ - @SOUP_CFLAGS@ - -libingen_engine_la_LDFLAGS = -no-undefined -module -avoid-version -libingen_engine_la_LIBADD = \ - ../shared/libingen_shared.la \ - ../module/libingen_module.la \ - @GLIBMM_LIBS@ \ - @JACK_LIBS@ \ - @LIBLO_LIBS@ \ - @RAUL_LIBS@ \ - @REDLANDMM_LIBS@ \ - @SLV2_LIBS@ \ - @SOUP_LIBS@ - -libingen_engine_la_SOURCES = \ - AudioBuffer.cpp \ - AudioBuffer.hpp \ - AudioDriver.hpp \ - Buffer.cpp \ - Buffer.hpp \ - ClientBroadcaster.cpp \ - ClientBroadcaster.hpp \ - CompiledPatch.hpp \ - ConnectionImpl.cpp \ - ConnectionImpl.hpp \ - Driver.hpp \ - DuplexPort.cpp \ - DuplexPort.hpp \ - Engine.cpp \ - Engine.hpp \ - EngineStore.cpp \ - EngineStore.hpp \ - Event.cpp \ - Event.hpp \ - EventBuffer.cpp \ - EventBuffer.hpp \ - EventSink.cpp \ - EventSink.hpp \ - EventSource.hpp \ - GraphObjectImpl.cpp \ - GraphObjectImpl.hpp \ - InputPort.cpp \ - InputPort.hpp \ - InternalPlugin.cpp \ - InternalPlugin.hpp \ - JackAudioDriver.cpp \ - JackAudioDriver.hpp \ - JackMidiDriver.cpp \ - JackMidiDriver.hpp \ - LADSPAPlugin.cpp \ - LADSPAPlugin.hpp \ - LV2Info.cpp \ - LV2Info.hpp \ - LV2Plugin.cpp \ - LV2Plugin.hpp \ - MessageContext.cpp \ - MessageContext.hpp \ - MidiControlNode.cpp \ - MidiControlNode.hpp \ - MidiDriver.hpp \ - MidiNoteNode.cpp \ - MidiNoteNode.hpp \ - MidiTriggerNode.cpp \ - MidiTriggerNode.hpp \ - NodeBase.cpp \ - NodeBase.hpp \ - NodeFactory.cpp \ - NodeFactory.hpp \ - NodeImpl.hpp \ - OSCClientSender.cpp \ - OSCClientSender.hpp \ - OSCDriver.hpp \ - OSCEngineReceiver.cpp \ - OSCEngineReceiver.hpp \ - ObjectSender.cpp \ - ObjectSender.hpp \ - OutputPort.cpp \ - OutputPort.hpp \ - PatchImpl.cpp \ - PatchImpl.hpp \ - PatchPlugin.hpp \ - PluginImpl.cpp \ - PluginImpl.hpp \ - PortImpl.cpp \ - PortImpl.hpp \ - PostProcessor.cpp \ - PostProcessor.hpp \ - ProcessContext.hpp \ - ProcessSlave.cpp \ - ProcessSlave.hpp \ - QueuedEngineInterface.cpp \ - QueuedEngineInterface.hpp \ - QueuedEvent.cpp \ - QueuedEvent.hpp \ - QueuedEventSource.cpp \ - QueuedEventSource.hpp \ - Responder.hpp \ - ThreadManager.hpp \ - TransportNode.cpp \ - TransportNode.hpp \ - engine.cpp \ - engine.hpp \ - events.hpp \ - events/AllNotesOffEvent.cpp \ - events/AllNotesOffEvent.hpp \ - events/ClearPatchEvent.cpp \ - events/ClearPatchEvent.hpp \ - events/ConnectionEvent.cpp \ - events/ConnectionEvent.hpp \ - events/CreateNodeEvent.cpp \ - events/CreateNodeEvent.hpp \ - events/CreatePatchEvent.cpp \ - events/CreatePatchEvent.hpp \ - events/CreatePortEvent.cpp \ - events/CreatePortEvent.hpp \ - events/DeactivateEvent.cpp \ - events/DeactivateEvent.hpp \ - events/DestroyEvent.cpp \ - events/DestroyEvent.hpp \ - events/DisconnectAllEvent.cpp \ - events/DisconnectAllEvent.hpp \ - events/DisconnectionEvent.cpp \ - events/DisconnectionEvent.hpp \ - events/EnablePatchEvent.cpp \ - events/EnablePatchEvent.hpp \ - events/LoadPluginsEvent.cpp \ - events/LoadPluginsEvent.hpp \ - events/MidiLearnEvent.cpp \ - events/MidiLearnEvent.hpp \ - events/NoteEvent.cpp \ - events/NoteEvent.hpp \ - events/PingQueuedEvent.hpp \ - events/RegisterClientEvent.cpp \ - events/RegisterClientEvent.hpp \ - events/RenameEvent.cpp \ - events/RenameEvent.hpp \ - events/RequestAllObjectsEvent.cpp \ - events/RequestAllObjectsEvent.hpp \ - events/RequestMetadataEvent.cpp \ - events/RequestMetadataEvent.hpp \ - events/RequestObjectEvent.cpp \ - events/RequestObjectEvent.hpp \ - events/RequestPluginEvent.cpp \ - events/RequestPluginEvent.hpp \ - events/RequestPluginsEvent.cpp \ - events/RequestPluginsEvent.hpp \ - events/RequestPortValueEvent.cpp \ - events/RequestPortValueEvent.hpp \ - events/SendPortActivityEvent.cpp \ - events/SendPortActivityEvent.hpp \ - events/SendPortValueEvent.cpp \ - events/SendPortValueEvent.hpp \ - events/SetMetadataEvent.cpp \ - events/SetMetadataEvent.hpp \ - events/SetPolyphonicEvent.cpp \ - events/SetPolyphonicEvent.hpp \ - events/SetPolyphonyEvent.cpp \ - events/SetPolyphonyEvent.hpp \ - events/SetPortValueEvent.cpp \ - events/SetPortValueEvent.hpp \ - events/UnregisterClientEvent.cpp \ - events/UnregisterClientEvent.hpp \ - jack_compat.h \ - lv2_contexts.h \ - tuning.hpp \ - types.hpp \ - util.hpp - -if WITH_LADSPA -libingen_engine_la_SOURCES += \ - LADSPANode.hpp \ - LADSPANode.cpp -endif - -if WITH_LV2 -libingen_engine_la_SOURCES += \ - LV2Node.hpp \ - LV2Node.cpp -endif - -if WITH_SOUP -libingen_engine_la_SOURCES += \ - HTTPEngineReceiver.cpp \ - HTTPEngineReceiver.hpp -endif - - - diff --git a/src/engine/events/Makefile.am b/src/engine/events/Makefile.am deleted file mode 100644 index 9a8cfbd5..00000000 --- a/src/engine/events/Makefile.am +++ /dev/null @@ -1,63 +0,0 @@ -MAINTAINERCLEANFILES = Makefile.in - -EXTRA_DIST = \ - AllNotesOffEvent.cpp \ - AllNotesOffEvent.hpp \ - ClearPatchEvent.cpp \ - ClearPatchEvent.hpp \ - ConnectionEvent.cpp \ - ConnectionEvent.hpp \ - CreateNodeEvent.cpp \ - CreateNodeEvent.hpp \ - CreatePatchEvent.cpp \ - CreatePatchEvent.hpp \ - CreatePortEvent.cpp \ - CreatePortEvent.hpp \ - DeactivateEvent.cpp \ - DeactivateEvent.hpp \ - DestroyEvent.cpp \ - DestroyEvent.hpp \ - DisconnectAllEvent.cpp \ - DisconnectAllEvent.hpp \ - DisconnectionEvent.cpp \ - DisconnectionEvent.hpp \ - EnablePatchEvent.cpp \ - EnablePatchEvent.hpp \ - LoadPluginsEvent.cpp \ - LoadPluginsEvent.hpp \ - MidiLearnEvent.cpp \ - MidiLearnEvent.hpp \ - NoteEvent.cpp \ - NoteEvent.hpp \ - PingQueuedEvent.hpp \ - RegisterClientEvent.cpp \ - RegisterClientEvent.hpp \ - RenameEvent.cpp \ - RenameEvent.hpp \ - RequestAllObjectsEvent.cpp \ - RequestAllObjectsEvent.hpp \ - RequestMetadataEvent.cpp \ - RequestMetadataEvent.hpp \ - RequestObjectEvent.cpp \ - RequestObjectEvent.hpp \ - RequestPluginEvent.cpp \ - RequestPluginEvent.hpp \ - RequestPluginsEvent.cpp \ - RequestPluginsEvent.hpp \ - RequestPortValueEvent.cpp \ - RequestPortValueEvent.hpp \ - SendPortActivityEvent.cpp \ - SendPortActivityEvent.hpp \ - SendPortValueEvent.cpp \ - SendPortValueEvent.hpp \ - SetMetadataEvent.cpp \ - SetMetadataEvent.hpp \ - SetPolyphonicEvent.cpp \ - SetPolyphonicEvent.hpp \ - SetPolyphonyEvent.cpp \ - SetPolyphonyEvent.hpp \ - SetPortValueEvent.cpp \ - SetPortValueEvent.hpp \ - UnregisterClientEvent.cpp \ - UnregisterClientEvent.hpp - diff --git a/src/gui/Makefile.am b/src/gui/Makefile.am deleted file mode 100644 index 41458812..00000000 --- a/src/gui/Makefile.am +++ /dev/null @@ -1,125 +0,0 @@ -MAINTAINERCLEANFILES = Makefile.in -EXTRA_DIST = ingen_gui.gladep - -if BUILD_GTK_CLIENT - -globalpixmapsdir = $(datadir)/pixmaps -dist_globalpixmaps_DATA = ingen.svg ingen-icon.svg - -sharefilesdir = $(pkgdatadir) -dist_sharefiles_DATA = ingen_gui.glade ingen.svg ingen-icon.svg - -moduledir = $(libdir)/ingen - -module_LTLIBRARIES = libingen_gui.la - -libingen_gui_la_CXXFLAGS = \ - -DINGEN_MODULE_DIR=\"$(libdir)/ingen\" \ - -DINGEN_DATA_DIR=\"$(pkgdatadir)\" \ - @CURL_CFLAGS@ \ - @FLOWCANVAS_CFLAGS@ \ - @GNOMECANVASMM_CFLAGS@ \ - @GTKMM_CFLAGS@ \ - @INGEN_CFLAGS@ \ - @LIBGLADEMM_CFLAGS@ \ - @LIBLO_CFLAGS@ \ - @REDLANDMM_CFLAGS@ \ - @RAUL_CFLAGS@ \ - @SLV2_CFLAGS@ \ - @SOUP_CFLAGS@ - - -libingen_gui_la_LDFLAGS = -no-undefined -module -avoid-version - -libingen_gui_la_LIBADD = \ - ../module/libingen_module.la \ - ../shared/libingen_shared.la \ - ../client/libingen_client.la \ - @CURL_LIBS@ \ - @FLOWCANVAS_LIBS@ \ - @GNOMECANVASMM_LIBS@ \ - @GTKMM_LIBS@ \ - @LIBGLADEMM_LIBS@ \ - @LIBLO_LIBS@ \ - @REDLANDMM_LIBS@ \ - @RAUL_LIBS@ \ - @SLV2_LIBS@ \ - @SOUP_LIBS@ - -libingen_gui_la_SOURCES = \ - gui.hpp \ - gui.cpp \ - App.cpp \ - App.hpp \ - BreadCrumb.hpp \ - BreadCrumbBox.cpp \ - BreadCrumbBox.hpp \ - Configuration.cpp \ - Configuration.hpp \ - ConnectWindow.cpp \ - ConnectWindow.hpp \ - Connection.hpp \ - ControlPanel.cpp \ - ControlPanel.hpp \ - Controls.cpp \ - Controls.hpp \ - GladeFactory.cpp \ - GladeFactory.hpp \ - LoadPatchWindow.cpp \ - LoadPatchWindow.hpp \ - LoadPluginWindow.cpp \ - LoadPluginWindow.hpp \ - LoadRemotePatchWindow.cpp \ - LoadRemotePatchWindow.hpp \ - LoadSubpatchWindow.cpp \ - LoadSubpatchWindow.hpp \ - MessagesWindow.cpp \ - MessagesWindow.hpp \ - NewSubpatchWindow.cpp \ - NewSubpatchWindow.hpp \ - NodeControlWindow.cpp \ - NodeControlWindow.hpp \ - ObjectMenu.hpp \ - ObjectMenu.cpp \ - NodeMenu.hpp \ - NodeMenu.cpp \ - PortMenu.hpp \ - PortMenu.cpp \ - NodeModule.cpp \ - NodeModule.hpp \ - NodePropertiesWindow.cpp \ - NodePropertiesWindow.hpp \ - PatchCanvas.cpp \ - PatchCanvas.hpp \ - PatchPortModule.cpp \ - PatchPortModule.hpp \ - PatchPropertiesWindow.cpp \ - PatchPropertiesWindow.hpp \ - PatchTreeWindow.cpp \ - PatchTreeWindow.hpp \ - PatchView.cpp \ - PatchView.hpp \ - PatchWindow.cpp \ - PatchWindow.hpp \ - Port.cpp \ - Port.hpp \ - PortPropertiesWindow.cpp \ - PortPropertiesWindow.hpp \ - RenameWindow.cpp \ - RenameWindow.hpp \ - SubpatchModule.cpp \ - SubpatchModule.hpp \ - ThreadedLoader.cpp \ - ThreadedLoader.hpp \ - WindowFactory.cpp \ - WindowFactory.hpp - -if WITH_CURL -libingen_gui_la_SOURCES += \ - UploadPatchWindow.cpp \ - UploadPatchWindow.hpp -endif - -endif - - diff --git a/src/ingen/Makefile.am b/src/ingen/Makefile.am deleted file mode 100644 index 8422b9e0..00000000 --- a/src/ingen/Makefile.am +++ /dev/null @@ -1,30 +0,0 @@ -AM_CXXFLAGS = \ - -DINGEN_MODULE_DIR=\"$(libdir)/ingen\" \ - @GTHREAD_CFLAGS@ \ - @GLIBMM_CFLAGS@ \ - @REDLANDMM_CFLAGS@ \ - @RAUL_CFLAGS@ \ - @SLV2_CFLAGS@ \ - @INGEN_CFLAGS@ - -MAINTAINERCLEANFILES = Makefile.in - -desktopfilesdir = $(datadir)/applications -dist_desktopfiles_DATA = ingen.desktop - -bin_PROGRAMS = ingen -ingen_LDADD = \ - ../module/libingen_module.la \ - ../shared/libingen_shared.la \ - @SLV2_LIBS@ \ - @REDLANDMM_LIBS@ \ - @RAUL_LIBS@ \ - @GTHREAD_LIBS@ \ - @GLIBMM_LIBS@ - -ingen_DEPENDENCIES = ../module/libingen_module.la - -ingen_SOURCES = \ - main.cpp \ - cmdline.h \ - cmdline.c diff --git a/src/module/Makefile.am b/src/module/Makefile.am deleted file mode 100644 index 84d499e4..00000000 --- a/src/module/Makefile.am +++ /dev/null @@ -1,22 +0,0 @@ -noinst_LTLIBRARIES = libingen_module.la - -libingen_module_la_CXXFLAGS = \ - @INGEN_CFLAGS@ \ - @GLIBMM_CFLAGS@ \ - @REDLANDMM_CFLAGS@ \ - @RAUL_CFLAGS@ \ - @SLV2_CFLAGS@ \ - -DINGEN_MODULE_DIR=\"$(libdir)/ingen\" - -libingen_module_la_LIBADD = \ - @GLIBMM_LIBS@ \ - @REDLANDMM_LIBS@ \ - @RAUL_LIBS@ \ - @SLV2_LIBS@ - -libingen_module_la_SOURCES = \ - global.hpp \ - global.cpp \ - World.hpp \ - Module.hpp \ - Module.cpp diff --git a/src/scripts/Makefile.am b/src/scripts/Makefile.am deleted file mode 100644 index 7bd6e103..00000000 --- a/src/scripts/Makefile.am +++ /dev/null @@ -1,2 +0,0 @@ -DIST_SUBDIRS = python supercollider - diff --git a/src/scripts/python/Makefile.am b/src/scripts/python/Makefile.am deleted file mode 100644 index c6da5467..00000000 --- a/src/scripts/python/Makefile.am +++ /dev/null @@ -1,4 +0,0 @@ -SUBDIRS = scripts - -EXTRA_DIST = ingen.py ingenecho.py OSC.py - diff --git a/src/scripts/python/scripts/Makefile.am b/src/scripts/python/scripts/Makefile.am deleted file mode 100644 index 3e070601..00000000 --- a/src/scripts/python/scripts/Makefile.am +++ /dev/null @@ -1,2 +0,0 @@ -EXTRA_DIST = sillysinepatch.py - diff --git a/src/scripts/supercollider/Makefile.am b/src/scripts/supercollider/Makefile.am deleted file mode 100644 index a6001b7a..00000000 --- a/src/scripts/supercollider/Makefile.am +++ /dev/null @@ -1,2 +0,0 @@ -EXTRA_DIST = Ingen.sc example.sc - diff --git a/src/serialisation/Makefile.am b/src/serialisation/Makefile.am deleted file mode 100644 index 57e99055..00000000 --- a/src/serialisation/Makefile.am +++ /dev/null @@ -1,24 +0,0 @@ -MAINTAINERCLEANFILES = Makefile.in - -moduledir = $(libdir)/ingen - -module_LTLIBRARIES = libingen_serialisation.la - -libingen_serialisation_la_CXXFLAGS = \ - @INGEN_CFLAGS@ \ - @REDLANDMM_CFLAGS@ \ - @RAUL_CFLAGS@ \ - @GLIBMM_CFLAGS@ \ - @SLV2_CFLAGS@ - -libingen_serialisation_la_LDFLAGS = -no-undefined -module -avoid-version -libingen_serialisation_la_LIBADD = @RAUL_LIBS@ @REDLANDMM_LIBS@ @GLIBMM_LIBS@ @SLV2_LIBS@ - -libingen_serialisation_la_SOURCES = \ - Parser.cpp \ - Parser.hpp \ - Serialiser.cpp \ - Serialiser.hpp \ - serialisation.cpp \ - serialisation.hpp - diff --git a/src/shared/Makefile.am b/src/shared/Makefile.am deleted file mode 100644 index c26c98a2..00000000 --- a/src/shared/Makefile.am +++ /dev/null @@ -1,22 +0,0 @@ -noinst_LTLIBRARIES = libingen_shared.la - -libingen_shared_la_CXXFLAGS = \ - @GLIBMM_CFLAGS@ \ - @INGEN_CFLAGS@ \ - @RAUL_CFLAGS@ \ - @REDLANDMM_CFLAGS@ \ - @SLV2_CFLAGS@ - -libingen_shared_la_SOURCES = \ - Builder.cpp \ - Builder.hpp \ - ClashAvoider.cpp \ - ClashAvoider.hpp \ - LV2Features.cpp \ - LV2Features.hpp \ - LV2URIMap.cpp \ - LV2URIMap.hpp \ - OSCSender.cpp \ - OSCSender.hpp \ - Store.cpp \ - Store.hpp -- cgit v1.2.1