Merge tag 'linux-watchdog-5.3-rc1' of git://www.linux-watchdog.org/linux-watchdog
[platform/kernel/linux-rpi.git] / tools / firmware / Makefile
1 # SPDX-License-Identifier: GPL-2.0
2 # Makefile for firmware tools
3
4 CFLAGS = -Wall -Wextra -g
5
6 all: ihex2fw
7 %: %.c
8         $(CC) $(CFLAGS) -o $@ $^
9
10 clean:
11         $(RM) ihex2fw
12
13 .PHONY: all clean