mirror of
https://github.com/rdkit/rdkit.git
synced 2026-06-04 21:54:27 +08:00
21 lines
521 B
Makefile
21 lines
521 B
Makefile
include $(RDBASE)/Code/rdvars.make
|
|
include $(RDBASE)/Code/rdrules.make
|
|
|
|
CXXFLAGS=$(RDOPTFLAGS) $(BOOSTINC) -I$(RDBASE)/Code -Wall
|
|
SOURCES=DistGeomUtils.cpp TriangleSmooth.cpp DistViolationContrib.cpp
|
|
LIB=libDistGeom.a
|
|
|
|
$(LIB): $(OBJS)
|
|
ar -rv $@ $?
|
|
|
|
testExecs/main.exe: testDistGeom.o $(LIB)
|
|
$(CXX) $(CXXFLAGS) -o $@ $^ $(RDFORCEFIELDS) $(RDOPTIMIZER) $(RDEIGENSOLVERS) $(RDGENERAL) $(RDGEOMETRY)
|
|
|
|
clean:
|
|
rm -f $(OBJS) $(LIB) testDistGeom.o testExecs/main.exe $(DEPENDS)
|
|
|
|
regrs: testExecs/main.exe
|
|
|
|
include $(DEPENDS)
|
|
|