forked from lijiext/lammps
43 lines
572 B
Makefile
43 lines
572 B
Makefile
# Makefile for coupling library
|
|
|
|
SHELL = /bin/sh
|
|
|
|
# System-specific settings
|
|
|
|
CC = g++
|
|
CCFLAGS = -g -O -DMPICH_IGNORE_CXX_SEEK
|
|
DEPFLAGS = -M
|
|
LINK = g++
|
|
LINKFLAGS = -g -O
|
|
ARCHIVE = ar
|
|
ARFLAGS = -rc
|
|
SIZE = size
|
|
|
|
# Files
|
|
|
|
LIB = libcouple.a
|
|
SRC = $(wildcard *.cpp)
|
|
INC = $(wildcard *.h)
|
|
OBJ = $(SRC:.cpp=.o)
|
|
|
|
# Targets
|
|
|
|
lib: $(OBJ)
|
|
$(ARCHIVE) $(ARFLAGS) $(LIB) $(OBJ)
|
|
|
|
clean:
|
|
rm $(LIB) *.o *.d
|
|
|
|
# Compilation rules
|
|
|
|
%.o:%.cpp
|
|
$(CC) $(CCFLAGS) -c $<
|
|
|
|
%.d:%.cpp
|
|
$(CC) $(CCFLAGS) $(DEPFLAGS) $< > $@
|
|
|
|
# Individual dependencies
|
|
|
|
DEPENDS = $(OBJ:.o=.d)
|
|
include $(DEPENDS)
|