8c14e45bfd
Rename it to superiotool while we're at it. Signed-off-by: Uwe Hermann <uwe@hermann-uwe.de> Acked-by: Uwe Hermann <uwe@hermann-uwe.de> git-svn-id: svn://svn.coreboot.org/coreboot/trunk@2758 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
6 lines
109 B
Makefile
6 lines
109 B
Makefile
CC:=gcc
|
|
CFLAGS:=-O2 -Wall
|
|
probe_superio: probe_superio.c
|
|
$(CC) $(CFLAGS) -o $@ $<
|
|
clean:
|
|
rm probe_superio
|