]> Git Repo - linux.git/blob - tools/firmware/Makefile
RISC-V: Remove any memblock representing unusable memory area
[linux.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
This page took 0.036993 seconds and 4 git commands to generate.