diff options
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 |