math: make RATIONAL tristate
[linux-2.6-microblaze.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