From 744f2f0d40244e48d768b6cd2c059f9fc40a69a5 Mon Sep 17 00:00:00 2001 From: sjplimp Date: Thu, 16 Sep 2010 22:39:31 +0000 Subject: [PATCH] git-svn-id: svn://svn.icms.temple.edu/lammps-ro/trunk@4815 f3b2605a-c512-4ea7-a41b-209d697bcdaa --- couple/lammps_spparks/Makefile | 48 ---------------------------------- 1 file changed, 48 deletions(-) delete mode 100644 couple/lammps_spparks/Makefile diff --git a/couple/lammps_spparks/Makefile b/couple/lammps_spparks/Makefile deleted file mode 100644 index df90a14e4a..0000000000 --- a/couple/lammps_spparks/Makefile +++ /dev/null @@ -1,48 +0,0 @@ -# Makefile for grain growth via LAMMPS <-> SPPARKS coupling - -SHELL = /bin/sh - -# System-specific settings - -LAMMPS = /home/sjplimp/lammps -SPPARKS = /home/sjplimp/spparks - -CC = g++ -CCFLAGS = -g -O -DMPICH_IGNORE_CXX_SEEK -I../library -DEPFLAGS = -M -LINK = g++ -LINKFLAGS = -g -O -L../library -L${LAMMPS}/src -L${SPPARKS}/src -USRLIB = -lcouple -llmp_g++ -lspk_g++ -SYSLIB = -lfftw -lmpich -lpthread -ARCHIVE = ar -ARFLAGS = -rc -SIZE = size - -# Files - -EXE = lmpspk -SRC = $(wildcard *.cpp) -INC = $(wildcard *.h) -OBJ = $(SRC:.cpp=.o) - -# Targets - -lmpspk: $(OBJ) - $(LINK) $(LINKFLAGS) $(OBJ) $(USRLIB) $(SYSLIB) -o $(EXE) - $(SIZE) $(EXE) - -clean: - rm $(EXE) *.o - -# Compilation rules - -%.o:%.cpp - $(CC) $(CCFLAGS) -c $< - -%.d:%.cpp - $(CC) $(CCFLAGS) $(DEPFLAGS) $< > $@ - -# Individual dependencies - -DEPENDS = $(OBJ:.o=.d) -include $(DEPENDS)