summaryrefslogtreecommitdiffstats
path: root/tools/serial_probe/Makefile
blob: 8e8590d62a743fcba2f0faa3faae9af5ba8c190b (plain)
1
2
3
4
5
6
7
8
9
CFLAGS = -Wall -Os
CFILES = $(wildcard *.c)
OFILES = $(CFILES:%.c=%.o)
GOAL = serial_probe

$(GOAL): $(OFILES)

clean:
	rm -f $(GOAL) $(OFILES) *~