From e741586389de21efe0dd7fa1b0057c970e4c1a17 Mon Sep 17 00:00:00 2001 From: Thomas Grill Date: Sat, 18 Dec 2004 05:01:11 +0000 Subject: updated build system for linux updated make system for BCC build system for flext-based externals updated build system add xcode project comply to build system svn path=/trunk/; revision=2405 --- externals/grill/flext/build/make-win-max-mingw.inc | 35 ++++++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100644 externals/grill/flext/build/make-win-max-mingw.inc (limited to 'externals/grill/flext/build/make-win-max-mingw.inc') diff --git a/externals/grill/flext/build/make-win-max-mingw.inc b/externals/grill/flext/build/make-win-max-mingw.inc new file mode 100644 index 00000000..c34825f8 --- /dev/null +++ b/externals/grill/flext/build/make-win-max-mingw.inc @@ -0,0 +1,35 @@ +DEFS += -DFLEXT_SYS=1 +CFLAGS += -fpack-struct=2 + +INCPATH += -I$(MAXSDKPATH)/max-includes -I$(MAXSDKPATH)/msp-includes +LIBPATH += -L$(MAXSDKPATH)/max-includes -L$(MAXSDKPATH)/msp-includes + +# these are both in PDPATH +LIBS += -lmaxapi -lmaxaudio + +EXT=mxe + +######################################### + +ifdef SHARED +# --- shared --- + +elseifdef THREADED +# --- static multi-threaded --- + +ifdef DEBUG +LIBS += -lflext_td-maxwin +else +LIBS += -lflext_t-maxwin +endif + +else +# --- static single-threaded --- + +ifdef DEBUG +LIBS += -lflext_d-maxwin +else +LIBS += -lflext-maxwin +endif + +endif -- cgit v1.2.1