summaryrefslogtreecommitdiff
path: root/tools/bin2obj/Makefile
diff options
context:
space:
mode:
authorAkira Akashi <rubenru09@aol.com>2021-08-30 23:15:26 +0100
committerGitHub <noreply@github.com>2021-08-30 23:15:26 +0100
commit81321acc0af32f5289125b8c1322b9c8a4de8a20 (patch)
treeba564dc6c9edcb1dc85a33dc83879387d189ce09 /tools/bin2obj/Makefile
parent9395f7cee40d7629cbd8840d30ea7f3d2a01db70 (diff)
parent6afd7bd12a7a7c5b9d3616dd843b7a8ef2df8f27 (diff)
Merge branch 'master' into unk_02006D98
Diffstat (limited to 'tools/bin2obj/Makefile')
-rw-r--r--tools/bin2obj/Makefile13
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 $@ $<