diff options
author | Thomas Grill <xovo@users.sourceforge.net> | 2004-01-08 03:39:00 +0000 |
---|---|---|
committer | Thomas Grill <xovo@users.sourceforge.net> | 2004-01-08 03:39:00 +0000 |
commit | 69487c956975fb9dc0587fb22fc20d6ca62ec08d (patch) | |
tree | bada1cbb47e818666ae5dfe2e024a306286816cc /externals/grill/xsample | |
parent | d563db671892f0719195aeeb89cac6ee3fe7c69e (diff) |
""
svn path=/trunk/; revision=1252
Diffstat (limited to 'externals/grill/xsample')
-rw-r--r-- | externals/grill/xsample/config-pd-bcc.txt | 5 | ||||
-rwxr-xr-x | externals/grill/xsample/make-files.txt | 3 | ||||
-rw-r--r-- | externals/grill/xsample/makefile.pd-bcc | 11 |
3 files changed, 11 insertions, 8 deletions
diff --git a/externals/grill/xsample/config-pd-bcc.txt b/externals/grill/xsample/config-pd-bcc.txt index bd3972df..ddc12efc 100644 --- a/externals/grill/xsample/config-pd-bcc.txt +++ b/externals/grill/xsample/config-pd-bcc.txt @@ -1,5 +1,5 @@ # xsample - extended sample objects for Max/MSP and pd (pure data) -# Copyright (c) 2001-2003 Thomas Grill (xovo@gmx.net) +# Copyright (c) 2001-2004 Thomas Grill (xovo@gmx.net) # # where is PD? @@ -19,3 +19,6 @@ INSTALL=yes # where should the external be installed? INSTDIR=$(PDPATH)\extra + +# additional compiler flags +UFLAGS=-6 -O2 -OS -ff diff --git a/externals/grill/xsample/make-files.txt b/externals/grill/xsample/make-files.txt index 8e71de6e..c6cc10d0 100755 --- a/externals/grill/xsample/make-files.txt +++ b/externals/grill/xsample/make-files.txt @@ -1,6 +1,7 @@ # all the source files from the package +NAME=xsample + SRCDIR=source SRCS=main.cpp play.cpp groove.cpp record.cpp inter.cpp - HDRS=main.h inter.h diff --git a/externals/grill/xsample/makefile.pd-bcc b/externals/grill/xsample/makefile.pd-bcc index 59d6efc8..67131953 100644 --- a/externals/grill/xsample/makefile.pd-bcc +++ b/externals/grill/xsample/makefile.pd-bcc @@ -1,5 +1,5 @@ # xsample - extended sample objects for Max/MSP and pd (pure data) -# Copyright (c) 2001-2003 Thomas Grill (xovo@gmx.net) +# Copyright (c) 2001-2004 Thomas Grill (xovo@gmx.net) # # Makefile for BorlandC++ # @@ -9,7 +9,9 @@ !include config-pd-bcc.txt -NAME=xsample +# all the source files from the package +!include make-files.txt + SETUPFUNCTION=$(NAME)_setup # flext stuff @@ -22,15 +24,12 @@ LIBS=cw32.lib import32.lib C0D32.OBJ # compiler definitions and flags DEFS=-DFLEXT_SYS=2 -CFLAGS=-6 -O2 -OS -ff -tWD +CFLAGS=-tWD $(UFLAGS) # the rest can stay untouched # ---------------------------------------------- -# all the source files from the package -!include make-files.txt - # default target all: $(OUTPATH)\$(NAME).dll |