Files
rdkit/Code/Query/Makefile
Greg Landrum 430a83bd96 merge in the jamfiles from the bjam branch;
various and sundry minor code cleanups;
this probably does not yet build on windows... that is next
2007-11-23 15:55:30 +00:00

18 lines
299 B
Makefile
Executable File

include $(RDBASE)/Code/rdvars.make
include $(RDBASE)/Code/rdrules.make
CXXFLAGS=$(BASECXXFLAGS)
LDFLAGS= -L. $(RDGENERAL)
SOURCES=test.cpp
testExecs/test.exe: test.o
$(CXX) -o $@ $(CXXFLAGS) $^ $(LDFLAGS)
regrs: testExecs/test.exe
clean:
rm -f $(OBJS) test.o $(DEPENDS)
include $(DEPENDS)