diff options
Diffstat (limited to 'externals/grill/flext')
-rw-r--r-- | externals/grill/flext/config-pd-linux.txt | 4 | ||||
-rw-r--r-- | externals/grill/flext/makefile.pd-linux | 28 | ||||
-rw-r--r-- | externals/grill/flext/readme.txt | 3 |
3 files changed, 19 insertions, 16 deletions
diff --git a/externals/grill/flext/config-pd-linux.txt b/externals/grill/flext/config-pd-linux.txt index ad27fc35..39ad5717 100644 --- a/externals/grill/flext/config-pd-linux.txt +++ b/externals/grill/flext/config-pd-linux.txt @@ -27,5 +27,5 @@ INSTDIR=/usr/local/lib/pd/flext # additional compiler flags # (check if they fit for your system!) -UFLAGS= -mcpu=pentiumpro # gcc 2.95 -# UFLAGS= -mcpu=pentium3 -msse # gcc 3.2 +UFLAGS=-mcpu=pentiumpro # gcc 2.95 +# UFLAGS=-mcpu=pentium3 -msse # gcc 3.2 diff --git a/externals/grill/flext/makefile.pd-linux b/externals/grill/flext/makefile.pd-linux index d1af3dc8..49444440 100644 --- a/externals/grill/flext/makefile.pd-linux +++ b/externals/grill/flext/makefile.pd-linux @@ -10,16 +10,16 @@ CONFIG=config-pd-linux.txt -include $(CONFIG) +include ${CONFIG} # compiler+linker stuff -INCLUDES=$(PDPATH) +INCLUDES=${PDPATH} # general compiler flags -FLAGS=-DFLEXT_SYS=2 -fno-exceptions $(UFLAGS) +FLAGS=-DFLEXT_SYS=2 -fno-exceptions ${UFLAGS} # compiler flags for optimized build -CFLAGS= -O6 +CFLAGS=-O6 # compiler flags for debug build CFLAGS_D=-g @@ -41,22 +41,22 @@ SRCDIR=source include make-files.txt ifdef SNDOBJ -INCLUDES+=$(SNDOBJ) -SRCS+=$(SRCS_SNDOBJ) -HDRS+=$(HDRS_SNDOBJ) +INCLUDES+=${SNDOBJ} +SRCS+=${SRCS_SNDOBJ} +HDRS+=${HDRS_SNDOBJ} endif ifdef STK -INCLUDES+=$(STK) -SRCS+=$(SRCS_STK) -HDRS+=$(HDRS_STK) +INCLUDES+=${STK} +SRCS+=${SRCS_STK} +HDRS+=${HDRS_STK} endif MAKEFILE=makefile.pd-linux -TARGET=$(TARGDIR)/$(NAME).a -TARGET_D=$(TARGDIR)/$(NAME)_d.a -TARGET_T=$(TARGDIR)/$(NAME)_t.a -TARGET_TD=$(TARGDIR)/$(NAME)_td.a +TARGET=${TARGDIR}/${NAME}.a +TARGET_D=${TARGDIR}/${NAME}_d.a +TARGET_T=${TARGDIR}/${NAME}_t.a +TARGET_TD=${TARGDIR}/${NAME}_td.a all: $(TARGDIR) $(TARGET) $(TARGET_D) $(TARGET_T) $(TARGET_TD) diff --git a/externals/grill/flext/readme.txt b/externals/grill/flext/readme.txt index 9bf15a4a..587bc57b 100644 --- a/externals/grill/flext/readme.txt +++ b/externals/grill/flext/readme.txt @@ -329,6 +329,9 @@ tests: - what about FLEXT_ADDMETHOD_V (for var arg lists) and FLEXT_ADDMETHOD_A (anythings)... nonsense? -> yes, these definitions obscure the meaning of _ as an indication for usage of a message tag +- check whether m_dsp gets called upon deletion of a used buffer (PD and MaxMSP may behave differently). + + features: - abstraction for clock functions - manage running threads individually (stop, isrunning?, priority etc.) |