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