mirror of
https://github.com/rdkit/rdkit.git
synced 2026-06-04 21:54:27 +08:00
23 lines
360 B
Makefile
Executable File
23 lines
360 B
Makefile
Executable File
include $(RDBASE)/Code/rdvars.make
|
|
include $(RDBASE)/Code/rdrules.make
|
|
|
|
CXXFLAGS=$(BASECXXFLAGS)
|
|
LDFLAGS= -L. $(RDGENERAL)
|
|
|
|
SOURCES=Query.cpp
|
|
LIB=libQuery.a
|
|
|
|
$(LIB): $(OBJS)
|
|
ar -rv $@ $?
|
|
|
|
testExecs/test.exe: test.o $(LIB)
|
|
$(CXX) -o $@ $(CXXFLAGS) $^ $(LDFLAGS)
|
|
|
|
regrs: testExecs/test.exe
|
|
|
|
|
|
clean:
|
|
rm -f $(OBJS) test.o $(LIB) $(DEPENDS)
|
|
|
|
include $(DEPENDS)
|