added dvm/tools/

This commit is contained in:
ALEXks
2023-09-15 08:30:58 +03:00
parent 3bde5853a9
commit 91dced1fe6
123 changed files with 51340 additions and 1 deletions

View File

@@ -0,0 +1,35 @@
.KEEP_STATE:
#############################################################################
# #
# RATER #
# #
#############################################################################
LIB = librater.a
INC_DIR = -I../Include -I../../Presage/Include
COPT = -g -w $(INC_DIR) -DP_DEBUG
LINK = ar r
.SUFFIXES: .o .cpp
.cpp.o:
$(CXX) -c $(COPT) $*.cpp
MODULES = \
AMView.o DimBound.o RedGroup.o \
AlignAxis.o DistAxis.o RedVar.o \
BGroup.o Space.o \
Block.o Ls.o Vm.o RemAccessBuf.o \
CommCost.o ParLoop.o DArray.o \
intersection.o LoopBlock.o LoopLS.o
################################## RATER ##################################
all: $(LIB)
$(LIB): $(MODULES)
$(LINK) $(LIB) $(MODULES)
clean:
rm -f *.o $(LIB) logfile.txt