From 83645ac2b31ed10aecb00d660399c0a4d3ce4df2 Mon Sep 17 00:00:00 2001 From: Joursoir Date: Tue, 17 Nov 2020 23:59:51 +0300 Subject: init project --- Makefile | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 Makefile (limited to 'Makefile') diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..1c55ab6 --- /dev/null +++ b/Makefile @@ -0,0 +1,14 @@ +CPP = g++ +CPPFLAGS = -Wall -g +SOURCES = src/client/client.cpp +OBJECTS = client.o + +.PHONY: all clean client + +all: client + +client: + g++ $(CPPFLAGS) $(SOURCES) -o client + +clean: + rm -rf src/client/client.o client \ No newline at end of file -- cgit v1.2.3-18-g5258