The first Git version

This commit is contained in:
2018-11-29 17:21:49 +07:00
commit b2faedd28f
13 changed files with 1821 additions and 0 deletions

35
Makefile Normal file
View File

@@ -0,0 +1,35 @@
CXX = g++
CXXFLAGS = -O2 -g -Wall -fmessage-length=0
CXXFLAGS = -std=gnu++11 -O2 -Wall -fmessage-length=0
#OBJS = DEC-0.0.o
SRCS = Agent.cpp
SRCS += Main.cpp
SRCS += Processor.cpp
SRCS += Settings.cpp
#SRCS +=
OBJS+= ${SRCS:.cpp=.o}
.SUFFIXES : .cpp
%.o : %.cpp
$(CXX) $(CXXFLAGS) -c $< -o $@
LIBS = -lboost_random
TARGET = Deaf-2.0
$(TARGET): $(OBJS)
$(CXX) -o $(TARGET) $(OBJS) $(LIBS)
all: $(TARGET)
clean:
rm -f $(OBJS) $(TARGET)
#LDFLAGS = -lm #-Lutil -Lutil/stemloop -Lutil/tscore
#FORTCFLAGS =