6a5bc46579
* add fintek superio support * add license header * add clean target in makefile Signed-off-by: Stefan Reinauer <stepan@coresystems.de> Acked-by: Stefan Reinauer <stepan@coresystems.de> git-svn-id: svn://svn.coreboot.org/coreboot/trunk@2536 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
|