diff options
Diffstat (limited to 'util/ectool/Makefile')
-rw-r--r-- | util/ectool/Makefile | 16 |
1 files changed, 11 insertions, 5 deletions
diff --git a/util/ectool/Makefile b/util/ectool/Makefile index d799cee77f..1493a0ce6b 100644 --- a/util/ectool/Makefile +++ b/util/ectool/Makefile @@ -19,16 +19,22 @@ # Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. # -CC=gcc -CFLAGS=-O2 -Wall -W +CC = gcc +CFLAGS = -O2 -Wall -W +PROGRAM = ectool +INSTALL = /usr/bin/install +PREFIX = /usr/local -all: ectool +all: $(PROGRAM) -ectool: ec.o ectool.o +$(PROGRAM): ec.o ectool.o $(CC) $(CFLAGS) -o $@ $^ +install: $(PROGRAM) + $(INSTALL) $(PROGRAM) $(PREFIX)/sbin + clean: - rm *.o ectool + rm *.o $(PROGRAM) %.o: %.c $(CC) $(CFLAGS) -c $^ -I. -o $@ |