]> git.ipfire.org Git - thirdparty/kernel/stable.git/blame - tools/firmware/Makefile
coredump: fix race condition between collapse_huge_page() and core dumping
[thirdparty/kernel/stable.git] / tools / firmware / Makefile
CommitLineData
1e510603
AS
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