2023-09-15 08:30:58 +03:00
|
|
|
BINDIR=../../../bin
|
|
|
|
|
|
|
|
|
|
EXECUTABLES = dvmstf
|
2024-05-02 11:05:56 +03:00
|
|
|
COPT=-c -I../../Zlib/include -std=c++11
|
2023-09-15 08:30:58 +03:00
|
|
|
ZLIB = zlib
|
|
|
|
|
ZLIBDIR = ../../Zlib/Release
|
|
|
|
|
|
|
|
|
|
OBJS=\
|
|
|
|
|
inter.o \
|
|
|
|
|
potensyn.o \
|
|
|
|
|
statfile.o \
|
|
|
|
|
statread.o \
|
|
|
|
|
treeinter.o \
|
2024-04-18 21:36:40 +03:00
|
|
|
statprintf.o \
|
|
|
|
|
stat.o \
|
|
|
|
|
statinter.o
|
2023-09-15 08:30:58 +03:00
|
|
|
|
|
|
|
|
$(BINDIR)/$(EXECUTABLES): $(OBJS)
|
|
|
|
|
$(LINKER) -o $@ $(OBJS) -L$(ZLIBDIR) -l$(ZLIB)
|
|
|
|
|
|
|
|
|
|
all: $(BINDIR)/$(EXECUTABLES)
|
|
|
|
|
@echo "*** COMPILING EXECUTABLE $(EXECUTABLES) DONE"
|
|
|
|
|
|
|
|
|
|
clean:
|
|
|
|
|
rm -f $(OBJS)
|
|
|
|
|
cleanall:
|
|
|
|
|
rm -f $(OBJS)
|
|
|
|
|
|
|
|
|
|
potensyn.o:
|
|
|
|
|
$(CXX) $(COPT) potensyn.cpp
|
|
|
|
|
inter.o:
|
|
|
|
|
$(CXX) $(COPT) inter.cpp
|
|
|
|
|
statfile.o:
|
|
|
|
|
$(CXX) $(COPT) statfile.cpp
|
|
|
|
|
statread.o:
|
|
|
|
|
$(CXX) $(COPT) statread.cpp
|
|
|
|
|
treeinter.o:
|
|
|
|
|
$(CXX) $(COPT) treeinter.cpp
|
|
|
|
|
statprintf.o:
|
|
|
|
|
$(CXX) $(COPT) statprintf.cpp
|
2024-04-18 21:36:40 +03:00
|
|
|
stat.o:
|
|
|
|
|
$(CXX) $(COPT) stat.cpp
|
|
|
|
|
statinter.o:
|
|
|
|
|
$(CXX) $(COPT) statinter.cpp
|