aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorN.N. <sevyves@users.sourceforge.net>2003-09-17 22:36:34 +0000
committerN.N. <sevyves@users.sourceforge.net>2003-09-17 22:36:34 +0000
commite717b098475d0e8391cbeb3c9e09936d052a28ce (patch)
tree4e8bb1f68a0db8c9bee9f0301e7680ed4a5e17d6
parente1bab57bdf4bbcd2c3641a18ebfdc90478144d3d (diff)
Updated for gem2pdp v0.5
svn path=/trunk/externals/gem2pdp/; revision=1005
-rw-r--r--Makefile.in3
-rw-r--r--configure.ac2
-rw-r--r--gem2pdp.cpp1
-rw-r--r--pdp2gem.cpp1
4 files changed, 5 insertions, 2 deletions
diff --git a/Makefile.in b/Makefile.in
index a16e25d..201c7cd 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -46,4 +46,5 @@ distro: clean all
cat $(PDP_DIR)/include/pdp.h | grep -v m_pd > pdp-light.h
gcc $(GEM2PDP_CPPFLAGS) $(GEM2PDP_INCLUDE) -o $*.o -c $*.c
-
+install:
+ cp -f --remove-destination *.pd $(PD_DIR)/doc/5.reference
diff --git a/configure.ac b/configure.ac
index 578cf75..df6e9c0 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1,7 +1,7 @@
dnl Process this file with autoconf to produce a configure script.
AC_INIT
-GEM2PDP_VERSION=0.4
+GEM2PDP_VERSION=0.5
PD_DIR=/usr/local/pd
PDP_DIR=/usr/local/pd/pdp
GEM_DIR=/usr/local/pd/gem
diff --git a/gem2pdp.cpp b/gem2pdp.cpp
index e2d2167..efd23e1 100644
--- a/gem2pdp.cpp
+++ b/gem2pdp.cpp
@@ -142,6 +142,7 @@ void gem2pdp :: obj_setupCallback(t_class *classPtr)
post( "gem2pdp : a bridge between GEM and PDP/PiDiP v"GEM2PDP_VERSION" (ydegoyon@free.fr)" );
class_addmethod(classPtr, (t_method)&gem2pdp::bangMessCallback,
gensym("bang"), A_NULL);
+ class_sethelpsymbol( classPtr, gensym("gem2pdp.pd") );
}
void gem2pdp :: bangMessCallback(void *data)
diff --git a/pdp2gem.cpp b/pdp2gem.cpp
index a526fd9..2fba0c8 100644
--- a/pdp2gem.cpp
+++ b/pdp2gem.cpp
@@ -191,6 +191,7 @@ void pdp2gem :: obj_setupCallback(t_class *classPtr)
{
post( "pdp2gem : a bridge between PDP/PiDiP and GEM v"GEM2PDP_VERSION" (ydegoyon@free.fr)" );
class_addmethod(classPtr, (t_method)&pdp2gem::pdpCallback, gensym("pdp"), A_SYMBOL, A_DEFFLOAT, A_NULL);
+ class_sethelpsymbol( classPtr, gensym("pdp2gem.pd") );
}
void pdp2gem :: pdpCallback(void *data, t_symbol *action, t_floatarg fpcktno)