diff options
author | Tom Smeding <tom.smeding@gmail.com> | 2020-01-27 14:55:37 +0100 |
---|---|---|
committer | Tom Smeding <tom.smeding@gmail.com> | 2020-01-27 14:55:37 +0100 |
commit | 8d7eff7835405ed10b7659cc831a6727d0c02daf (patch) | |
tree | c18862a612caaa4acb4774f0cbde451d4667313c /Makefile |
Initial
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 18 |
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 |