summaryrefslogtreecommitdiff
path: root/competition/Makefile
diff options
context:
space:
mode:
authorTom Smeding <tom.smeding@gmail.com>2018-08-20 23:51:16 +0200
committerTom Smeding <tom.smeding@gmail.com>2018-08-20 23:52:03 +0200
commit57a1091dfb2c6403cbe63c7ddca8acc7e3d0f940 (patch)
treea997ed523a853d9d5fff7d5b90b12a180b00a231 /competition/Makefile
parentf0b6d1b9c46578183b427bcec4bbe99ab10c7b97 (diff)
Switch to https://git.tomsmeding.com/competitionHEADmaster
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 $@ $<