summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorTom Smeding <tom.smeding@gmail.com>2018-08-20 21:53:38 +0200
committerTom Smeding <tom.smeding@gmail.com>2018-08-20 21:53:38 +0200
commit1c42efb1b116287949e59370198cad2df465835d (patch)
tree6c191f0a629b23566763827e73071c523f0d3e2b /Makefile
Initial
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile21
1 files changed, 21 insertions, 0 deletions
diff --git a/Makefile b/Makefile
new file mode 100644
index 0000000..3edc3f0
--- /dev/null
+++ b/Makefile
@@ -0,0 +1,21 @@
+CXX = g++
+CXXFLAGS = -Wall -Wextra -O2 -std=c++17 -fwrapv -pthread
+
+TARGET = competition
+
+SOURCES := $(wildcard *.cpp)
+HEADERS := $(wildcard *.h)
+
+.PHONY: all clean
+
+all: $(TARGET)
+
+clean:
+ rm -f $(TARGET) *.o
+
+
+competition: $(SOURCES:.cpp=.o)
+ $(CXX) $(CXXFLAGS) $^ -o $@
+
+%.o: %.cpp $(HEADERS)
+ $(CXX) $(CXXFLAGS) -c -o $@ $<