diff options
author | Stefan Reinauer <stepan@coresystems.de> | 2007-01-17 10:57:42 +0000 |
---|---|---|
committer | Stefan Reinauer <stepan@openbios.org> | 2007-01-17 10:57:42 +0000 |
commit | 6a5bc46579719205967ba3acbeea765a6a4c2356 (patch) | |
tree | 4d89b78a8262382ff042cca6e0db4f7b3b579f9b /util/probe_superio/Makefile | |
parent | 96206510e3076859b16c20ebba1a84d989f4a48d (diff) |
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
Diffstat (limited to 'util/probe_superio/Makefile')
-rw-r--r-- | util/probe_superio/Makefile | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/util/probe_superio/Makefile b/util/probe_superio/Makefile index 37b13b1ba9..fb5075d6b4 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 |