diff options
author | Hans-Christoph Steiner <eighthave@users.sourceforge.net> | 2010-08-24 15:18:53 +0000 |
---|---|---|
committer | Hans-Christoph Steiner <eighthave@users.sourceforge.net> | 2010-08-24 15:18:53 +0000 |
commit | b98e2bc00355aae29d3e67ca41eda8cedfe0100d (patch) | |
tree | 234abfa2047b475118e4e9cfc027df21917b017b /externals/Makefile | |
parent | 0db9a6f12f517505476cec7a603106c6542ab0f1 (diff) |
added plugin~ using Makefile template
svn path=/trunk/; revision=13939
Diffstat (limited to 'externals/Makefile')
-rw-r--r-- | externals/Makefile | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/externals/Makefile b/externals/Makefile index e543ce9e..93648773 100644 --- a/externals/Makefile +++ b/externals/Makefile @@ -128,7 +128,7 @@ CXXFLAGS = $(CFLAGS) # # WARNING! this MUST be all on one line because the automatic package # building scripts rely on it being that way. -LIB_TARGETS = adaptive arraysize bassemu boids bsaylor comport creb cxc cyclone earplug ekext ext13 flashserver flib freeverb ggee hcs iem_ambi iem_bin_ambi iemlib iemgui iemguts iem_adaptfilt iemmatrix iemxmlrpc iem_delay iem_roomsim iem_spec2 iem_tab jasch_lib loaders mapping markex maxlib mjlib moocow moonlib motex mrpeach oscx pan pdcontainer pddp pdogg pmpd sigpack smlib tof toxy unauthorized vanilla vbap windowing zexy +LIB_TARGETS = adaptive arraysize bassemu boids bsaylor comport creb cxc cyclone earplug ekext ext13 flashserver flib freeverb ggee hcs iem_ambi iem_bin_ambi iemlib iemgui iemguts iem_adaptfilt iemmatrix iemxmlrpc iem_delay iem_roomsim iem_spec2 iem_tab jasch_lib loaders mapping markex maxlib mjlib moocow moonlib motex mrpeach oscx pan pdcontainer pddp pdogg plugin pmpd sigpack smlib tof toxy unauthorized vanilla vbap windowing zexy # this is for libraries that don't compile (yet) on all platforms ifeq ($(OS_NAME),windows) @@ -1546,6 +1546,18 @@ pidip_clean: #------------------------------------------------------------------------------# +# PLUGIN +plugin: + make -C $(externals_src)/plugin~ + +plugin_install: + make -C $(externals_src)/plugin~ DESTDIR="$(DESTDIR)" objectsdir="$(objectsdir)" install + +plugin_clean: + make -C $(externals_src)/plugin~ clean + + +#------------------------------------------------------------------------------# # PMPD pmpd: make -C $(externals_src)/pmpd |