From 66e06ee2fb38abd7924c7732d4a1bd00e4c237f4 Mon Sep 17 00:00:00 2001 From: Nick Krichevsky Date: Mon, 3 Sep 2018 15:04:01 -0400 Subject: [PATCH] Add 'all' task for make --- Makefile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 1dbf906..c201174 100644 --- a/Makefile +++ b/Makefile @@ -6,7 +6,9 @@ COMMON_OBJ_FILES = $(patsubst %.c,$(BUILD_DIR)/%.o,$(wildcard common/*.c)) CLIENT_OBJ_FILES = $(patsubst %.c,$(BUILD_DIR)/%.o,$(wildcard client/*.c)) SERVER_OBJ_FILES = $(patsubst %.c,$(BUILD_DIR)/%.o,$(wildcard server/*.c)) -.PHONY: clean +.PHONY: all clean + +all: http_client http_server clean: rm -rf $(BUILD_DIR)