Merge tag 'powerpc-5.11-3' of git://git.kernel.org/pub/scm/linux/kernel/git/powerpc...
[linux/fpc-iii.git] / tools / firmware / Makefile
blobcfb297e6ef5ae43ed902e276b77bd9da0b0b4f99
1 # SPDX-License-Identifier: GPL-2.0
2 # Makefile for firmware tools
4 CFLAGS = -Wall -Wextra -g
6 all: ihex2fw
7 %: %.c
8 $(CC) $(CFLAGS) -o $@ $^
10 clean:
11 $(RM) ihex2fw
13 .PHONY: all clean