aboutsummaryrefslogtreecommitdiff
path: root/externals/grill/flext/flext.mpw
diff options
context:
space:
mode:
authorThomas Grill <xovo@users.sourceforge.net>2002-11-25 22:37:04 +0000
committerThomas Grill <xovo@users.sourceforge.net>2002-11-25 22:37:04 +0000
commitc6620995f41c40560fee52e12b8629244d6d793e (patch)
tree41449d94e018cab0b713653c98c32bcc5eb28674 /externals/grill/flext/flext.mpw
parenta55a5773570e56a1fb59887f1215f3d05a055700 (diff)
""
svn path=/trunk/; revision=244
Diffstat (limited to 'externals/grill/flext/flext.mpw')
-rw-r--r--externals/grill/flext/flext.mpw78
1 files changed, 0 insertions, 78 deletions
diff --git a/externals/grill/flext/flext.mpw b/externals/grill/flext/flext.mpw
deleted file mode 100644
index a287b220..00000000
--- a/externals/grill/flext/flext.mpw
+++ /dev/null
@@ -1,78 +0,0 @@
-# flext - C++ layer for Max/MSP and pd (pure data) externals
-# Copyright (c) 2001,2002 Thomas Grill (xovo@gmx.net)
-#
-# Makefile for Apple MPW-PR
-#
-# usage: make -f flext.mpw
-#
-# ---------------------------------------------
-
-MAKEFILE = flext.mpw
-¥MondoBuild¥ = {MAKEFILE} # Make blank to avoid rebuilds when makefile is modified
-
-Name = flext
-
-ObjDir = :MPW:
-MaxSDK = Daten:Prog Stuff:Max/MSP SDK:SDK Examples
-Includes = -i :,"{MaxSDK}:Max Includes","{MaxSDK}:MSP Includes"
-Defines = -d MAXMSP
-
-Sym-PPC = -sym off
-Flags = -bool on -enum int -includes unix -opt speed,unroll,unswitch
-WarnOff = -w 35 # arg not used
-
-PPCCPlusOptions = {Includes} {Sym-PPC} {Defines} {Flags} {WarnOff}
-
-
-### Source Files ###
-
-Headers = flstdc.h flbase.h fldefs.h flext.h flclass.h fldsp.h flthr.h flmspbuffer.h flinternal.h
-SrcFiles = flbase.cpp flbuf.cpp flext.cpp fllib.cpp fldsp.cpp flatom.cpp flsetup.cpp flthr.cpp flutil.cpp flxlet.cpp
-
-SrcDir = :source:
-
-### Object Files ###
-
-ObjFiles-PPC = ¶
- "{ObjDir}flbase.cpp.x" ¶
- "{ObjDir}flbuf.cpp.x" ¶
- "{ObjDir}flext.cpp.x" ¶
- "{ObjDir}fllib.cpp.x" ¶
- "{ObjDir}fldsp.cpp.x" ¶
- "{ObjDir}flatom.cpp.x" ¶
- "{ObjDir}flsetup.cpp.x" ¶
- "{ObjDir}flthr.cpp.x" ¶
- "{ObjDir}flutil.cpp.x" ¶
- "{ObjDir}flxlet.cpp.x"
-
-### Libraries ###
-
-LibFiles-PPC =
-
-
-### Default Rules ###
-
-{ObjDir} Ä {SrcDir}
-
-.cpp.x Ä .cpp {¥MondoBuild¥} {Headers}
- {PPCCPlus} {depDir}{default}.cpp -o {targDir}{default}.cpp.x {PPCCPlusOptions}
-
-
-### Build Rules ###
-
-all Ä Folder {ObjDir}{Name}.o
-
-Folder Ä
- if !`Exists {ObjDir}` ; NewFolder {ObjDir} ; end
-
-{ObjDir}{Name}.o ÄÄ {ObjFiles-PPC} {LibFiles-PPC}
- PPCLink ¶
- -o {Targ} ¶
- {Deps} ¶
- {Sym-PPC} ¶
- -mf -d ¶
- -t 'XCOF' ¶
- -c 'MPS ' ¶
- -xm l
-
-