trivial enhancement
* 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
diff --git a/util/probe_superio/Makefile b/util/probe_superio/Makefile
index 37b13b1..fb5075d 100644
--- a/util/probe_superio/Makefile
+++ b/util/probe_superio/Makefile
@@ -1,2 +1,6 @@
+CC:=gcc
+CFLAGS:=-O2 -Wall
 probe_superio: probe_superio.c
-	cc -O2 -o probe_superio probe_superio.c
+	$(CC) $(CFLAGS) -o $@ $< 
+clean:
+	rm probe_superio