summaryrefslogtreecommitdiff
path: root/competition/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'competition/Makefile')
-rw-r--r--competition/Makefile21
1 files changed, 0 insertions, 21 deletions
diff --git a/competition/Makefile b/competition/Makefile
deleted file mode 100644
index 8b2641c..0000000
--- a/competition/Makefile
+++ /dev/null
@@ -1,21 +0,0 @@
-CXX = g++
-CXXFLAGS = -Wall -Wextra -O3 -std=c++17 -fwrapv -flto -pthread
-
-TARGET = competition
-
-SOURCES := $(wildcard *.cpp) ../board.cpp
-HEADERS := $(wildcard *.h) ../board.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 $@ $<