diff options
| author | PikalaxALT <pikalaxalt@gmail.com> | 2020-06-06 09:56:15 -0400 |
|---|---|---|
| committer | PikalaxALT <pikalaxalt@gmail.com> | 2020-06-06 09:56:15 -0400 |
| commit | 677805498cf651739ac8355d2f388cf63ae0a5fd (patch) | |
| tree | d68d5af77ed7918290148fdd115a900dc687403d /tools/narccomp/Makefile | |
| parent | 60c9307cae1c4e5ca18c90181fe0a227db95562a (diff) | |
Set tracking on filesystem; narc on the narcs
Diffstat (limited to 'tools/narccomp/Makefile')
| -rw-r--r-- | tools/narccomp/Makefile | 13 |
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 $@ $^ |
