forked from lijiext/lammps
34 lines
622 B
Makefile
34 lines
622 B
Makefile
# Makefile for MC
|
|
|
|
SHELL = /bin/sh
|
|
|
|
SRC = mc.cpp random_park.cpp
|
|
OBJ = $(SRC:.cpp=.o)
|
|
|
|
# change this line for your machine to path for CSlib src dir
|
|
|
|
CSLIB = /home/sjplimp/lammps/lib/message/cslib/src
|
|
|
|
# compiler/linker settings
|
|
|
|
CC = g++
|
|
CCFLAGS = -g -O3 -I$(CSLIB)
|
|
LINK = g++
|
|
LINKFLAGS = -g -O -L$(CSLIB)
|
|
|
|
# targets
|
|
|
|
mc: $(OBJ)
|
|
# first line if built the CSlib within lib/message with ZMQ support
|
|
# second line if built the CSlib without ZMQ support
|
|
$(LINK) $(LINKFLAGS) $(OBJ) -lcsnompi -lzmq -o mc
|
|
# $(LINK) $(LINKFLAGS) $(OBJ) -lcsnompi -o mc
|
|
|
|
clean:
|
|
@rm -f *.o mc
|
|
|
|
# rules
|
|
|
|
%.o:%.cpp
|
|
$(CC) $(CCFLAGS) -c $<
|