aboutsummaryrefslogtreecommitdiff
path: root/externals/grill/pool/makefile.pd-bcc
diff options
context:
space:
mode:
authorThomas Grill <xovo@users.sourceforge.net>2004-01-08 03:39:00 +0000
committerThomas Grill <xovo@users.sourceforge.net>2004-01-08 03:39:00 +0000
commit69487c956975fb9dc0587fb22fc20d6ca62ec08d (patch)
treebada1cbb47e818666ae5dfe2e024a306286816cc /externals/grill/pool/makefile.pd-bcc
parentd563db671892f0719195aeeb89cac6ee3fe7c69e (diff)
""
svn path=/trunk/; revision=1252
Diffstat (limited to 'externals/grill/pool/makefile.pd-bcc')
-rw-r--r--externals/grill/pool/makefile.pd-bcc14
1 files changed, 6 insertions, 8 deletions
diff --git a/externals/grill/pool/makefile.pd-bcc b/externals/grill/pool/makefile.pd-bcc
index bb41d752..e12abde0 100644
--- a/externals/grill/pool/makefile.pd-bcc
+++ b/externals/grill/pool/makefile.pd-bcc
@@ -1,5 +1,5 @@
# pool - hierarchical storage object for PD and Max/MSP
-# Copyright (C) 2002 Thomas Grill
+# Copyright (C) 2002-2004 Thomas Grill
#
# Makefile for BorlandC++
#
@@ -9,7 +9,9 @@
!include config-pd-bcc.txt
-NAME=pool
+# all the source files from the package
+!include make-files.txt
+
SETUPFUNCTION=$(NAME)_setup
# flext stuff
@@ -22,16 +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
-SRCS= main.cpp data.cpp pool.cpp
-HDRS= pool.h
-
# default target
all: $(OUTPATH)\$(NAME).dll
@@ -53,7 +51,7 @@ OBJS= $(SRCS:.cpp=.obj)
#$(SRCS): $(HDRS)
# -touch $<
-.cpp.obj:
+{$(SRCDIR)}.cpp.obj:
bcc32 -c $(CFLAGS) $(DEFS) $(INCPATH) -n$(OUTPATH) $<
$(OUTPATH):