aboutsummaryrefslogtreecommitdiff
path: root/externals/grill/flext/tutorial/make-sub.pd-msvc
diff options
context:
space:
mode:
Diffstat (limited to 'externals/grill/flext/tutorial/make-sub.pd-msvc')
-rw-r--r--externals/grill/flext/tutorial/make-sub.pd-msvc63
1 files changed, 0 insertions, 63 deletions
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