aboutsummaryrefslogtreecommitdiff
path: root/externals/grill/vasp/makefile.pd-linux
diff options
context:
space:
mode:
authorThomas Grill <xovo@users.sourceforge.net>2004-12-18 05:02:44 +0000
committerThomas Grill <xovo@users.sourceforge.net>2004-12-18 05:02:44 +0000
commite9f8fa66c202381780bccc5e5082e8c2487a9433 (patch)
treeefafe9de97f610b65402b5931a24eb53116f1543 /externals/grill/vasp/makefile.pd-linux
parente741586389de21efe0dd7fa1b0057c970e4c1a17 (diff)
updated make system for BCC
use flext build system avoid malicious file name characters using flext build system updated build system svn path=/trunk/; revision=2406
Diffstat (limited to 'externals/grill/vasp/makefile.pd-linux')
-rw-r--r--externals/grill/vasp/makefile.pd-linux96
1 files changed, 0 insertions, 96 deletions
diff --git a/externals/grill/vasp/makefile.pd-linux b/externals/grill/vasp/makefile.pd-linux
deleted file mode 100644
index 1f8f7c09..00000000
--- a/externals/grill/vasp/makefile.pd-linux
+++ /dev/null
@@ -1,96 +0,0 @@
-# VASP - vector assembling vector processor
-# Copyright (c)2002-2003 Thomas Grill (xovo@gmx.net)
-#
-# Makefile for gcc @ linux
-#
-# usage:
-# to build run "make -f makefile.pd-linux"
-# to install (as root), do "make -f makefile.pd-linux install"
-# to install help, do "make -f makefile.pd-linux install-help"
-#
-
-CONFIG=config-pd-linux.txt
-
-include ${CONFIG}
-
-
-# compiler stuff
-INCLUDES=$(PDINC)
-FLAGS=-DFLEXT_SYS=2 -DFLEXT_THREADS
-CFLAGS=-O2 ${UFLAGS}
-LDFLAGS=-Wl,-s
-
-ifdef FLEXT_SHARED
-CFLAGS+=-shared -DFLEXT_SHARED
-
-ifeq ($(CXX),icc)
-LDFLAGS+=-i_dynamic
-else
-LDFLAGS+=-Wl,-Bdynamic
-endif
-LIBS=flext
-
-else
-
-# take threaded flext lib
-LIBS=flext_t
-endif
-
-
-# ----------------------------------------------
-# the rest can stay untouched
-# ----------------------------------------------
-
-NAME=vasp
-
-include make-files.txt
-
-MAKEFILE=makefile.pd-linux
-TARGET=$(TARGDIR)/$(NAME).pd_linux
-
-
-# default target
-all: $(TARGDIR) $(TARGET)
-
-$(patsubst %,$(SRCDIR)/%,$(SRCS)): $(patsubst %,$(SRCDIR)/%,$(HDRS)) $(MAKEFILE) $(CONFIG)
- 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))
- $(CXX) $(LDFLAGS) -shared -o$@ $^ -L$(FLEXTPATH) $(patsubst %,-l%,$(LIBS))
- strip --strip-unneeded $@
- chmod 755 $@
-
-
-$(INSTDIR):
- -mkdir $(INSTDIR)
-
-$(INSTDIR)/vasp: $(INSTDIR)
- -mkdir $(INSTDIR)/vasp
-
-install:: $(INSTDIR)/vasp
-
-install:: $(TARGET) pd/*
- -cp $^ $(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)
-