diff --git a/doc/background.html b/doc/background.html index ba9af8d..8f4478d 100644 --- a/doc/background.html +++ b/doc/background.html @@ -10,7 +10,7 @@ compromises are made, notably the presence of only one data type (float).

Technical documentation is contained in the ladspa.h header file. When +href="file:///usr/include/ladspa.h">ladspa.h header file. When clashes occur between this file and external documentation then the header file should be considered the definitive version.

diff --git a/doc/index.html b/doc/index.html index fb7f61b..09a40c1 100644 --- a/doc/index.html +++ b/doc/index.html @@ -6,7 +6,7 @@
  • Download
  • Installation
  • How to Share Plugins between Hosts
  • -
  • LADSPA API Header File
  • +
  • LADSPA API Header File
  • License (LGPL) for This Release
  • Example Plugins
  • Change History
  • diff --git a/doc/installation.html b/doc/installation.html index 1b0b339..4db5781 100644 --- a/doc/installation.html +++ b/doc/installation.html @@ -4,7 +4,7 @@ number of hosts and example plugins. Go to the src/ directory and type make to build and test them.

    -

    The ladspa.h API header +

    The ladspa.h API header file is needed to build hosts and plugins. It may be useful to install it in /usr/local/include/ or /usr/include/. The programs generated in the diff --git a/doc/overview.html b/doc/overview.html index e19e21f..a85d689 100644 --- a/doc/overview.html +++ b/doc/overview.html @@ -8,7 +8,7 @@ against a range of host applications.

    Definitive technical documentation on LADSPA plugins for both host and plugin writers is contained within copious comments in the ladspa.h header file.

    +href="file:///usr/include/ladspa.h">ladspa.h header file.

    This SDK provides:

    diff --git a/src/makefile b/src/makefile index 886237f..2ed10ed 100644 --- a/src/makefile +++ b/src/makefile @@ -15,7 +15,7 @@ INSTALL_BINARY_DIR = /usr/bin/ INCLUDES = -I. LIBRARIES = -ldl -lm -CFLAGS = $(INCLUDES) -Wall -Werror -O3 -fPIC +CFLAGS = $(INCLUDES) -Wall -Werror $(RPM_OPT_FLAGS) -fPIC -DPLUGINDIR=$(PLUGINDIR) CXXFLAGS = $(CFLAGS) PLUGINS = ../plugins/amp.so \ ../plugins/delay.so \ @@ -59,9 +59,9 @@ test: /tmp/test.wav ../snd/noise.wav always @echo Test complete. install: targets - -mkdirhier $(INSTALL_PLUGINS_DIR) - -mkdirhier $(INSTALL_INCLUDE_DIR) - -mkdirhier $(INSTALL_BINARY_DIR) + -mkdir -p $(INSTALL_PLUGINS_DIR) + -mkdir -p $(INSTALL_INCLUDE_DIR) + -mkdir -p $(INSTALL_BINARY_DIR) cp ../plugins/* $(INSTALL_PLUGINS_DIR) cp ladspa.h $(INSTALL_INCLUDE_DIR) cp ../bin/* $(INSTALL_BINARY_DIR)