From c749af94ff9a33fb85e60079be85414bd2fca501 Mon Sep 17 00:00:00 2001 From: Thomas Grill Date: Fri, 17 Dec 2004 05:02:40 +0000 Subject: avoid malicious file name characters using flext build system remove legacy files svn path=/trunk/; revision=2395 --- externals/grill/vasp/makefile.pd-msvc | 56 ----------------------------------- 1 file changed, 56 deletions(-) delete mode 100644 externals/grill/vasp/makefile.pd-msvc (limited to 'externals/grill/vasp/makefile.pd-msvc') 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 -- cgit v1.2.1