summaryrefslogtreecommitdiff
path: root/tools/narccomp/Makefile
diff options
context:
space:
mode:
authorPikalaxALT <pikalaxalt@gmail.com>2020-06-06 09:56:15 -0400
committerPikalaxALT <pikalaxalt@gmail.com>2020-06-06 09:56:15 -0400
commit677805498cf651739ac8355d2f388cf63ae0a5fd (patch)
treed68d5af77ed7918290148fdd115a900dc687403d /tools/narccomp/Makefile
parent60c9307cae1c4e5ca18c90181fe0a227db95562a (diff)
Set tracking on filesystem; narc on the narcs
Diffstat (limited to 'tools/narccomp/Makefile')
-rw-r--r--tools/narccomp/Makefile13
1 files changed, 13 insertions, 0 deletions
diff --git a/tools/narccomp/Makefile b/tools/narccomp/Makefile
new file mode 100644
index 00000000..b484e7a1
--- /dev/null
+++ b/tools/narccomp/Makefile
@@ -0,0 +1,13 @@
+CXX = g++
+CXXFLAGS := -O3 -std=c++11
+
+.PHONY: all clean
+
+all: narccomp
+ @:
+
+clean:
+ $(RM) narccomp narccomp.exe
+
+narccomp: narccomp.cpp
+ $(CXX) $(CXXFLAGS) -o $@ $^