aboutsummaryrefslogtreecommitdiff
path: root/externals/grill/vasp/makefile.pd-msvc
diff options
context:
space:
mode:
authorThomas Grill <xovo@users.sourceforge.net>2002-12-02 17:50:01 +0000
committerThomas Grill <xovo@users.sourceforge.net>2002-12-02 17:50:01 +0000
commit0a109da279e9df66fb5ea7d6bdaeffed16592f02 (patch)
tree9835a26fbd77b7689050ca0bdd25c8ce0b7cf264 /externals/grill/vasp/makefile.pd-msvc
parent4985ae92eea0eb7609a2449d7e147f69b7134b50 (diff)
"version 0.1.1"
svn path=/trunk/; revision=266
Diffstat (limited to 'externals/grill/vasp/makefile.pd-msvc')
-rw-r--r--externals/grill/vasp/makefile.pd-msvc58
1 files changed, 58 insertions, 0 deletions
diff --git a/externals/grill/vasp/makefile.pd-msvc b/externals/grill/vasp/makefile.pd-msvc
new file mode 100644
index 00000000..349900f5
--- /dev/null
+++ b/externals/grill/vasp/makefile.pd-msvc
@@ -0,0 +1,58 @@
+# VASP - vector assembling signal processor
+# Copyright (C) 2002 Thomas Grill (xovo@gmx.net)
+#
+# Makefile for MSVC++ 6
+#
+# usage:
+# to build run "make -f makefile.pd-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 pthreadVC.lib flext_t-pdwin.lib
+
+# compiler definitions and flags
+DEFS=/DPD /DNT /DFLEXT_THREADS
+
+CFLAGS=/GR /GX- /GD /G6 /Ox /MT
+
+# the rest can stay untouched
+# ----------------------------------------------
+
+NAME=vasp
+
+DIR=source
+
+!include make-files.txt
+
+
+all: $(OUTPATH) $(OUTPATH)\$(NAME).dll
+
+OBJS= $(SRCS:.cpp=.obj)
+
+# remove build
+clean:
+ -del /s /q $(OUTPATH) > nul
+ rmdir $(OUTPATH)
+
+$(OUTPATH):
+ -mkdir $(OUTPATH)
+
+# bad tricks here... the obj's are phantom files... no real make
+
+{$(DIR)}.cpp.obj:
+ cl /c /LD $(CFLAGS) $(DEFS) $(INCPATH) $** /Fo$(OUTPATH)\$@
+
+$(OUTPATH)\$(NAME).dll: $(OBJS)
+ cd $(OUTPATH)
+ link /DLL /out:$(NAME).dll /INCREMENTAL:NO $** $(LIBS) $(LIBPATH)
+ @-del *.exp
+ @-del *.lib
+ cd ..
+!ifdef INSTPATH
+ @-if not exist $(INSTPATH) mkdir $(INSTPATH)
+ copy $@ $(INSTPATH) > nul
+!endif