diff --git a/linux/makefile b/linux/makefile index da34d1c..0e81841 100755 --- a/linux/makefile +++ b/linux/makefile @@ -60,6 +60,13 @@ CFLAGS += -I../ \ -I/home/ubuntu/work/openssl \ -I/home/ubuntu/work/openssl/include LOCAL_SRC_FILES += ../main.cpp +LOCAL_SRC_FILES += ../http/connection.cpp +LOCAL_SRC_FILES += ../http/connection_manager.cpp +LOCAL_SRC_FILES += ../http/mime_types.cpp +LOCAL_SRC_FILES += ../http/reply.cpp +LOCAL_SRC_FILES += ../http/request_handler.cpp +LOCAL_SRC_FILES += ../http/request_parser.cpp +LOCAL_SRC_FILES += ../http/server.cpp all: $(CC) $(LOCAL_SRC_FILES) $(CFLAGS) $(LDFLAGS) -o proxyServerTest diff --git a/linux/proxyServerTest b/linux/proxyServerTest deleted file mode 100755 index 474965c..0000000 Binary files a/linux/proxyServerTest and /dev/null differ