1493a0ce6b2df489da0bf5cfd64d9a4ba249d4b1
[coreboot.git] / util / ectool / Makefile
1 #
2 # Makefile for ectool
3 #
4 # Copyright (C) 2009 by coresystems GmbH
5 # written by Stefan Reinauer <stepan@coresystems.de>
6 #
7 # This program is free software; you can redistribute it and/or modify
8 # it under the terms of the GNU General Public License as published by
9 # the Free Software Foundation; either version 2 of the License, or
10 # (at your option) any later version.
11 #
12 # This program is distributed in the hope that it will be useful,
13 # but WITHOUT ANY WARRANTY; without even the implied warranty of
14 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15 # GNU General Public License for more details.
16 #
17 # You should have received a copy of the GNU General Public License
18 # along with this program; if not, write to the Free Software
19 # Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
20 #
21
22 CC = gcc
23 CFLAGS = -O2 -Wall -W
24 PROGRAM = ectool
25 INSTALL = /usr/bin/install
26 PREFIX  = /usr/local
27
28 all: $(PROGRAM)
29
30 $(PROGRAM): ec.o ectool.o
31         $(CC) $(CFLAGS) -o $@ $^
32
33 install: $(PROGRAM)
34         $(INSTALL) $(PROGRAM) $(PREFIX)/sbin
35
36 clean:
37         rm *.o $(PROGRAM)
38
39 %.o: %.c
40         $(CC) $(CFLAGS) -c $^ -I. -o $@