summaryrefslogtreecommitdiffstats
path: root/util/superiotool/Makefile
diff options
context:
space:
mode:
authorUwe Hermann <uwe@hermann-uwe.de>2007-09-01 19:44:36 +0000
committerUwe Hermann <uwe@hermann-uwe.de>2007-09-01 19:44:36 +0000
commit8c14e45bfd20caf9623693340beb91184d851e08 (patch)
treeae806c516dde68e71db54793d82277507ffb2d74 /util/superiotool/Makefile
parentbd26392f42e508bf67503b0d44577528a3998bc0 (diff)
downloadcoreboot-8c14e45bfd20caf9623693340beb91184d851e08.tar.gz
coreboot-8c14e45bfd20caf9623693340beb91184d851e08.tar.bz2
coreboot-8c14e45bfd20caf9623693340beb91184d851e08.zip
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/Makefile6
1 files changed, 6 insertions, 0 deletions
diff --git a/util/superiotool/Makefile b/util/superiotool/Makefile
new file mode 100644
index 000000000000..fb5075d6b4de
--- /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