From b1d0383c31cc936710fb9099f6d9e86e7eeae569 Mon Sep 17 00:00:00 2001 From: Thomas Grill Date: Wed, 5 Jan 2005 05:04:55 +0000 Subject: made default configurations generic two more flext tutorials fixes for Max headers cleanups updated build system updated tutorials revised the documentation updated for OSX upgraded version number svn path=/trunk/; revision=2465 --- externals/grill/flext/tutorial/make-sub.pd-msvc | 63 ------------------------- 1 file changed, 63 deletions(-) delete mode 100644 externals/grill/flext/tutorial/make-sub.pd-msvc (limited to 'externals/grill/flext/tutorial/make-sub.pd-msvc') diff --git a/externals/grill/flext/tutorial/make-sub.pd-msvc b/externals/grill/flext/tutorial/make-sub.pd-msvc deleted file mode 100644 index b34b2b51..00000000 --- a/externals/grill/flext/tutorial/make-sub.pd-msvc +++ /dev/null @@ -1,63 +0,0 @@ -# flext tutorial examples -# Copyright (c) 2001-2003 Thomas Grill (xovo@gmx.net) -# -# Sub-Makefile for MSVC++ -# -# --------------------------------------------------------------- - -!include config-pd-msvc.txt - -# includes -INCPATH=/I"$(MSVCPATH)\include" /I"$(PDPATH)\src" /I"$(FLEXTPATH)" -LIBPATH=/LIBPATH:"$(MSVCPATH)\lib" /LIBPATH:"$(PDPATH)\bin" /LIBPATH:"$(FLEXTPATH)" -LIBS=pd.lib - -CFLAGS=/GR /GD /G6 /Ox - -!ifdef SNDOBJ -INCPATH=$(INCPATH) /I"$(SNDOBJ)" -LIBS=$(LIBS) "$(SNDOBJLIB)" -!endif - -!ifdef STK -INCPATH=$(INCPATH) /I"$(STK)" -LIBS=$(LIBS) "$(STKLIB)" -CFLAGS=$(CFLAGS) /GX -!endif - -# compiler definitions and flags -DEFS=/DFLEXT_SYS=2 - -!ifdef THR -LIBS=$(LIBS) flext_t-pdwin.lib pthreadVC.lib -DEFS=$(DEFS) /DFLEXT_THREADS -CFLAGS=$(CFLAGS) /MT -!else -LIBS=$(LIBS) flext-pdwin.lib -!endif - - - -# the rest can stay untouched -# ---------------------------------------------- - -# all the source files from the package -SRCS=main.cpp -HDRS= - -# ----------------------------------------------- - -all: $(OUTPATH) $(OUTPATH)\$(NAME).dll - -$(OUTPATH): - -mkdir $(OUTPATH) - -$(OUTPATH)\$(NAME)~.dll : $(OUTPATH)\$(NAME).dll - -ren $** $< - -$(OUTPATH)\$(NAME).dll : $(DIR)\$(SRCS) - cl /c /LD $(CFLAGS) $(DEFS) $(INCPATH) $** /Fotemp.obj - link /DLL /out:$@ /INCREMENTAL:NO temp.obj $(LIBS) $(LIBPATH) - @-del $(OUTPATH)\*.exp - @-del $(OUTPATH)\*.lib - @-del temp.obj -- cgit v1.2.1