Add 'all' task for make

master
Nick Krichevsky 2018-09-03 15:04:01 -04:00
parent 5353e35e58
commit 66e06ee2fb
1 changed files with 3 additions and 1 deletions

View File

@ -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)