Files
SAPFOR/dvm/tools/pppa/branches/dvm4.07/src/makefile.uni

45 lines
837 B
Plaintext
Raw Normal View History

2023-09-15 08:30:58 +03:00
######################################
### Automated created makefile.win ###
######################################
BINDIR=../../bin
EXECUTABLES = dvmstf
COPT=-c -I../../predictor/Zlib/Include
ZLIB = zlib
ZLIBDIR = ../../predictor/Zlib/Src
OBJS=\
inter.o \
potensyn.o \
statfile.o \
statread.o \
treeinter.o \
statprintf.o
$(BINDIR)/$(EXECUTABLES): $(OBJS)
$(CXX) -o $@ $(OBJS) -L$(ZLIBDIR) -l$(ZLIB)
all: $(BINDIR)/$(EXECUTABLES)
@echo "*** COMPILING EXECUTABLE $(EXECUTABLES) DONE"
clean:
rm -f logfile.txt
rm -f $(OBJS)
cleanall:
rm -f logfile.txt
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