mirror of
https://github.com/rdkit/rdkit.git
synced 2026-06-07 22:44:25 +08:00
16 lines
309 B
Makefile
Executable File
16 lines
309 B
Makefile
Executable File
include $(RDBASE)/Code/rdvars.make
|
|
include $(RDBASE)/Code/rdrules.make
|
|
|
|
CXXFLAGS=$(RDOPTFLAGS) $(BOOSTINC) -I$(RDCODEDIR)
|
|
|
|
SOURCES=DistPicker.cpp MaxMinPicker.cpp HierarchicalClusterPicker.cpp
|
|
LIB=libSimDivPickers.a
|
|
|
|
$(LIB): $(OBJS)
|
|
ar -rv $@ $?
|
|
|
|
clean:
|
|
rm -f $(OBJS) $(LIB) $(DEPENDS)
|
|
|
|
include $(DEPENDS)
|