From 9ac9b8cefc392958f57c0d2aceb308e3f15dfbec Mon Sep 17 00:00:00 2001 From: PikalaxALT Date: Fri, 26 Jun 2020 19:49:22 -0400 Subject: Create fixrom to monkeypatch makerom Dep scanning for o2narc targets Remove post-failure script because it can't be made to work --- tools/fixrom/Makefile | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 tools/fixrom/Makefile (limited to 'tools/fixrom/Makefile') diff --git a/tools/fixrom/Makefile b/tools/fixrom/Makefile new file mode 100644 index 00000000..7a3b5e0d --- /dev/null +++ b/tools/fixrom/Makefile @@ -0,0 +1,13 @@ +CC := gcc +CFLAGS := -O3 + +.PHONY: all clean + +all: fixrom + @: + +fixrom: fixrom.c + $(CC) $(CFLAGS) -o $@ $^ + +clean: + $(RM) fixrom fixrom.exe -- cgit v1.2.3