summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile18
1 files changed, 18 insertions, 0 deletions
diff --git a/Makefile b/Makefile
new file mode 100644
index 0000000..f410982
--- /dev/null
+++ b/Makefile
@@ -0,0 +1,18 @@
+CXX = g++
+CXXFLAGS = -Wall -Wextra -std=c++11 -O2 -Itermio
+TARGET = netcatchat
+
+.PHONY: all clean
+
+all: $(TARGET)
+
+clean:
+ rm -f $(TARGET)
+
+
+$(TARGET): netcatchat.cpp termio/libtermio.a
+ $(CXX) -o $@ $^
+
+termio/libtermio.a:
+ git submodule update --init --recursive
+ $(MAKE) -C termio