summaryrefslogtreecommitdiff
path: root/tools/fixrom/Makefile
blob: 7a3b5e0da90234401216d4c0ee6df3a84fd3d1f8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
CC := gcc
CFLAGS := -O3

.PHONY: all clean

all: fixrom
	@:

fixrom: fixrom.c
	$(CC) $(CFLAGS) -o $@ $^

clean:
	$(RM) fixrom fixrom.exe