mirror of
https://github.com/rdkit/rdkit.git
synced 2026-06-04 21:54:27 +08:00
various and sundry minor code cleanups; this probably does not yet build on windows... that is next
18 lines
299 B
Makefile
Executable File
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)
|