diff options
author | Uwe Hermann <uwe@hermann-uwe.de> | 2007-09-01 19:44:36 +0000 |
---|---|---|
committer | Uwe Hermann <uwe@hermann-uwe.de> | 2007-09-01 19:44:36 +0000 |
commit | 8c14e45bfd20caf9623693340beb91184d851e08 (patch) | |
tree | ae806c516dde68e71db54793d82277507ffb2d74 /util/superiotool/Makefile | |
parent | bd26392f42e508bf67503b0d44577528a3998bc0 (diff) |
Move probe_superio into the global util/ directory.
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
Diffstat (limited to 'util/superiotool/Makefile')
-rw-r--r-- | util/superiotool/Makefile | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/util/superiotool/Makefile b/util/superiotool/Makefile new file mode 100644 index 0000000000..fb5075d6b4 --- /dev/null +++ b/util/superiotool/Makefile @@ -0,0 +1,6 @@ +CC:=gcc +CFLAGS:=-O2 -Wall +probe_superio: probe_superio.c + $(CC) $(CFLAGS) -o $@ $< +clean: + rm probe_superio |