diff options
author | Thomas Grill <xovo@users.sourceforge.net> | 2002-10-22 23:07:10 +0000 |
---|---|---|
committer | Thomas Grill <xovo@users.sourceforge.net> | 2002-10-22 23:07:10 +0000 |
commit | d62e56f4df9594f72ce501f5e19c974fd18e7295 (patch) | |
tree | 635d4af7a7c2425098e60ca277086ec436b617f7 /externals/grill/flext/makefile.pd-msvc | |
parent | c6f373c281ecb5cd1f4aa7a070e15cc61ab8793c (diff) |
This commit was generated by cvs2svn to compensate for changes in r186,
which included commits to RCS files with non-trunk default branches.
svn path=/trunk/; revision=187
Diffstat (limited to 'externals/grill/flext/makefile.pd-msvc')
-rw-r--r-- | externals/grill/flext/makefile.pd-msvc | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/externals/grill/flext/makefile.pd-msvc b/externals/grill/flext/makefile.pd-msvc new file mode 100644 index 00000000..d775ab08 --- /dev/null +++ b/externals/grill/flext/makefile.pd-msvc @@ -0,0 +1,31 @@ +# flext - C++ layer for Max/MSP and pd (pure data) externals +# Copyright (c) 2001,2002 Thomas Grill (xovo@gmx.net) +# +# Makefile for MSVC++ +# +# +# IMPORTANT: Adjust some of the paths also in makefile-inc.msvc +# +# usage: make -f makefile.pd-msvc +# +# --------------------------------------------------------------- + +!include config-pd-msvc.txt + +all: flext flext_t flext_d flext_td + +flext: + nmake /f make-inc.pd-msvc NAME=$* + +flext_d: + nmake /f make-inc.pd-msvc NAME=$* _DEBUG=1 + +flext_t: + nmake /f make-inc.pd-msvc NAME=$* FLEXT_THREADS=1 + +flext_td: + nmake /f make-inc.pd-msvc NAME=$* FLEXT_THREADS=1 _DEBUG=1 + + +clean: + nmake /f make-inc.pd-msvc clean |