avoid name conflict with COLVARS package

This commit is contained in:
Axel Kohlmeyer
2022-12-21 18:28:04 -05:00
parent 517a2e5e26
commit c44e87d87a
2 changed files with 2 additions and 10 deletions

View File

@ -1,15 +1,11 @@
EXTRAMAKE=Makefile.lammps.empty
CC=mpicxx
# -DH5_NO_DEPRECATED_SYMBOLS is required here to ensure we are using
# the v1.8 API when HDF5 is configured to default to using the v1.6 API.
CXXFLAGS=-D_DEFAULT_SOURCE -O2 -Wall -fPIC -std=c++11
INC=-I include
AR=ar
ARFLAGS=rc
# need to build two libraries to not break compatibility and to support Install.py
LIB=liblepton.a
LIB=liblmplepton.a
SRC=src/CompiledExpression.cpp src/ExpressionProgram.cpp src/ExpressionTreeNode.cpp src/Operation.cpp src/ParsedExpression.cpp src/Parser.cpp
OBJ=$(SRC:src/%.cpp=build/%.o)

View File

@ -1,15 +1,11 @@
EXTRAMAKE=Makefile.lammps.empty
CC=g++
# -DH5_NO_DEPRECATED_SYMBOLS is required here to ensure we are using
# the v1.8 API when HDF5 is configured to default to using the v1.6 API.
CXXFLAGS=-D_DEFAULT_SOURCE -O2 -Wall -fPIC -std=c++11
INC=-I include
AR=ar
ARFLAGS=rc
# need to build two libraries to not break compatibility and to support Install.py
LIB=liblepton.a
LIB=liblmplepton.a
SRC=src/CompiledExpression.cpp src/ExpressionProgram.cpp src/ExpressionTreeNode.cpp src/Operation.cpp src/ParsedExpression.cpp src/Parser.cpp
OBJ=$(SRC:src/%.cpp=build/%.o)