2014-06-10 21:23:09 +04:00
|
|
|
# This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
# License, v. 2.0. If a copy of the MPL was not distributed with this file,
|
|
|
|
# You can obtain one at http://mozilla.org/MPL/2.0/.
|
|
|
|
|
|
|
|
SRCS:=\
|
|
|
|
src/Buffer.cpp \
|
|
|
|
src/BufferedSocket.cpp \
|
|
|
|
src/CommandEventHandler.cpp \
|
|
|
|
src/Config.cpp \
|
|
|
|
src/EventHandler.cpp \
|
|
|
|
src/Hash.cpp \
|
|
|
|
src/HeartbeatEventHandler.cpp \
|
|
|
|
src/Logger.cpp \
|
|
|
|
src/Logging.cpp \
|
|
|
|
src/PullFileEventHandler.cpp \
|
|
|
|
src/PushFileEventHandler.cpp \
|
|
|
|
src/Reactor.cpp \
|
|
|
|
src/Registration.cpp \
|
|
|
|
src/Shell.cpp \
|
|
|
|
src/SocketAcceptor.cpp \
|
|
|
|
src/Strings.cpp \
|
|
|
|
src/SUTAgent.cpp \
|
|
|
|
src/Subprocess.cpp \
|
|
|
|
src/SubprocessEventHandler.cpp \
|
|
|
|
src/Version.cpp
|
|
|
|
|
|
|
|
OBJS:=$(subst .cpp,$(OBJ),$(SRCS))
|
|
|
|
|
|
|
|
AGENT = agent$(EXE)
|
|
|
|
|
|
|
|
all: $(AGENT)
|
|
|
|
|
|
|
|
clean:
|
2014-06-13 05:04:57 +04:00
|
|
|
rm -rf src/*$(OBJ) $(AGENT) .deps
|