xref: /openbmc/linux/tools/firmware/Makefile (revision c83eeec79ff64f777cbd59a8bd15d0a3fe1f92c0)
1# SPDX-License-Identifier: GPL-2.0
2# Makefile for firmware tools
3
4CFLAGS = -Wall -Wextra -g
5
6all: ihex2fw
7%: %.c
8	$(CC) $(CFLAGS) -o $@ $^
9
10clean:
11	$(RM) ihex2fw
12
13.PHONY: all clean
14