aboutsummaryrefslogtreecommitdiff
path: root/externals/grill/vasp/makefile.pd-msvc
diff options
context:
space:
mode:
Diffstat (limited to 'externals/grill/vasp/makefile.pd-msvc')
-rw-r--r--externals/grill/vasp/makefile.pd-msvc56
1 files changed, 0 insertions, 56 deletions
diff --git a/externals/grill/vasp/makefile.pd-msvc b/externals/grill/vasp/makefile.pd-msvc
deleted file mode 100644
index f43a2b9d..00000000
--- a/externals/grill/vasp/makefile.pd-msvc
+++ /dev/null
@@ -1,56 +0,0 @@
-# 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=/DFLEXT_SYS=2 /DFLEXT_THREADS
-
-CFLAGS=/GR /G6 /Ox /MT /EHsc
-
-# the rest can stay untouched
-# ----------------------------------------------
-
-NAME=vasp
-
-!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
-
-{$(SRCDIR)}.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