blob: cfb297e6ef5ae43ed902e276b77bd9da0b0b4f99 [file] [log] [blame]
Andrey Smirnov1e510602018-10-17 11:27:18 -07001# 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
Geert Uytterhoeven3aa69802019-06-17 16:41:22 +020013.PHONY: all clean