From 71a3c2e14a52026811fd50396275b0efe0ce9101 Mon Sep 17 00:00:00 2001 From: PikalaxALT Date: Sun, 22 Aug 2021 14:30:54 -0400 Subject: Port bin2obj from NitroSDK --- tools/bin2obj/Makefile | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 tools/bin2obj/Makefile (limited to 'tools/bin2obj/Makefile') 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 $@ $< -- cgit v1.2.3