projects
/
releases.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
GNU Linux-libre 6.9-gnu
[releases.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