aboutsummaryrefslogtreecommitdiff
path: root/externals/grill/vasp/makefile.pd-cygwin
diff options
context:
space:
mode:
Diffstat (limited to 'externals/grill/vasp/makefile.pd-cygwin')
-rw-r--r--externals/grill/vasp/makefile.pd-cygwin83
1 files changed, 83 insertions, 0 deletions
diff --git a/externals/grill/vasp/makefile.pd-cygwin b/externals/grill/vasp/makefile.pd-cygwin
new file mode 100644
index 00000000..454c3167
--- /dev/null
+++ b/externals/grill/vasp/makefile.pd-cygwin
@@ -0,0 +1,83 @@
+# VASP - vector assembling vector processor
+# Copyright (c)2002-2003 Thomas Grill (xovo@gmx.net)
+#
+# Makefile for gcc @ cygwin
+#
+# usage:
+# to build run "make -f makefile.pd-cygwin"
+# to install (as root), do "make -f makefile.pd-cygwin install"
+# to install help, do "make -f makefile.pd-cygwin install-help"
+#
+
+include config-pd-cygwin.txt
+
+FLEXTLIB=$(FLEXTPATH)/flext_t-pdwin.lib
+PDLIBS=$(PD)/bin/pd.dll $(PD)/bin/pthreadVC.dll
+
+# compiler stuff
+INCLUDES=/usr/include $(PDINC)
+FLAGS=-DFLEXT_SYS=2 -DFLEXT_THREADS -fno-exceptions
+CFLAGS=-O6 ${UFLAGS} -fmove-all-movables -frerun-loop-opt
+#CFLAGS+=-funroll-loops -fmove-all-movables -freduce-all-givs -fschedule-insns2 -foptimize-register-move
+LDFLAGS=-Wl,-s
+
+LIBS=m
+
+# ----------------------------------------------
+# the rest can stay untouched
+# ----------------------------------------------
+
+NAME=vasp
+SRCDIR=source
+
+include make-files.txt
+
+MAKEFILE=makefile.pd-cygwin
+TARGET=$(TARGDIR)/$(NAME).dll
+
+
+# default target
+all: $(TARGDIR) $(TARGET)
+
+$(patsubst %,$(SRCDIR)/%,$(SRCS)): $(patsubst %,$(SRCDIR)/%,$(HDRS)) $(MAKEFILE)
+ touch $(patsubst %,$(SRCDIR)/%,$(SRCS))
+
+$(TARGDIR):
+ -mkdir $(TARGDIR)
+
+$(TARGDIR)/%.o : $(SRCDIR)/%.cpp
+ $(CXX) -c $(CFLAGS) $(FLAGS) $(patsubst %,-I%,$(INCLUDES) $(FLEXTPATH)) $< -o $@
+
+$(TARGET) : $(patsubst %.cpp,$(TARGDIR)/%.o,$(SRCS)) $(FLEXTLIB)
+ $(CXX) $(LDFLAGS) -shared $^ ${PDLIBS} $(patsubst %,-l%,$(LIBS)) -o $@
+ strip --strip-unneeded $@
+ chmod 755 $@
+
+
+$(INSTDIR):
+ -mkdir $(INSTDIR)
+
+$(INSTDIR)/vasp: $(INSTDIR)
+ -mkdir $(INSTDIR)/vasp
+
+install:: $(INSTDIR)/vasp
+
+install:: $(TARGET) pd
+ cp -R $^ $(INSTDIR)/vasp
+# chown -R root.root $(INSTDIR)/vasp
+
+
+$(HELPDIR)/vasp:
+ -mkdir $(HELPDIR)/vasp
+
+install-help:: $(HELPDIR)/vasp
+
+install-help:: ./pd-help
+ cp $^/*.* $(HELPDIR)/vasp
+# chown -R root.root $(HELPDIR)/vasp
+
+
+.PHONY: clean
+clean:
+ rm -f $(TARGDIR)/*.o $(TARGET)
+