diff options
| author | Akira Akashi <rubenru09@aol.com> | 2021-08-30 23:07:56 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-08-30 23:07:56 +0100 |
| commit | 6afd7bd12a7a7c5b9d3616dd843b7a8ef2df8f27 (patch) | |
| tree | eee378a2b4e09ff5e46faae7f4880f76ab075a26 /tools/bin2obj/Makefile | |
| parent | 7994935696dcf9d81888e2d9d991f4b6a3e00738 (diff) | |
| parent | c17dcd24d24b9309ce2c1da1c709816afbea975b (diff) | |
Merge pull request #452 from PikalaxALT/pikalax_work
NNS fnd
Diffstat (limited to 'tools/bin2obj/Makefile')
| -rw-r--r-- | tools/bin2obj/Makefile | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/tools/bin2obj/Makefile b/tools/bin2obj/Makefile new file mode 100644 index 00000000..760a66e2 --- /dev/null +++ b/tools/bin2obj/Makefile @@ -0,0 +1,13 @@ +CXX := g++
+CXXFLAGS := -O2 -g -std=c++17
+
+.PHONY: all clean
+
+all: bin2obj
+ @:
+
+clean:
+ $(RM) bin2obj bin2obj.exe
+
+bin2obj: bin2obj.cpp
+ $(CXX) $(CXXFLAGS) -o $@ $<
|
