Blame view

tools/firmware/Makefile 181 Bytes
1e5106031   Andrey Smirnov   tools: Add 'firmw...
1
2
3
4
5
6
7
8
9
10
11
  # SPDX-License-Identifier: GPL-2.0
  # Makefile for firmware tools
  
  CFLAGS = -Wall -Wextra -g
  
  all: ihex2fw
  %: %.c
  	$(CC) $(CFLAGS) -o $@ $^
  
  clean:
  	$(RM) ihex2fw
3aa698013   Geert Uytterhoeven   tools/firmware: A...
12
  .PHONY: all clean