diff options
| author | PikalaxALT <pikalaxalt@gmail.com> | 2020-06-18 13:53:34 -0400 |
|---|---|---|
| committer | PikalaxALT <pikalaxalt@gmail.com> | 2020-06-18 13:53:34 -0400 |
| commit | 28b7cf28c73879c406324f14df424fd7f46e9c14 (patch) | |
| tree | e4616cf2702e62b3dd35f9d65ff4b012d0f02b22 /tools/o2narc/Makefile | |
| parent | 42efbaf26211b24edc4e31a7ae51948458caef65 (diff) | |
Implement o2narc; decompile base stats and movelearns to json
Diffstat (limited to 'tools/o2narc/Makefile')
| -rw-r--r-- | tools/o2narc/Makefile | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/tools/o2narc/Makefile b/tools/o2narc/Makefile new file mode 100644 index 00000000..d7e8444e --- /dev/null +++ b/tools/o2narc/Makefile @@ -0,0 +1,11 @@ +CXX := g++ +CXXFLAGS := -O3 -std=c++11 + +all: o2narc + @: + +o2narc: o2narc.cpp elf.h + $(CXX) $(CXXFLAGS) -o $@ $< + +clean: + $(RM) o2narc o2narc.exe |
