correctly mark code segments as code in SELF
[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; version 2 of the License.
10 ##
11 ## This program is distributed in the hope that it will be useful,
12 ## but WITHOUT ANY WARRANTY; without even the implied warranty of
13 ## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14 ## GNU General Public License for more details.
15 ##
16 ## You should have received a copy of the GNU General Public License
17 ## along with this program; if not, write to the Free Software
18 ## Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301 USA
19 ##
20
21 CC = gcc
22 CFLAGS = -O2 -Wall -W
23 PROGRAM = ectool
24 INSTALL = /usr/bin/install
25 PREFIX  = /usr/local
26
27 all: $(PROGRAM)
28
29 $(PROGRAM): ec.o ectool.o
30         $(CC) $(CFLAGS) -o $@ $^
31
32 install: $(PROGRAM)
33         $(INSTALL) $(PROGRAM) $(PREFIX)/sbin
34
35 clean:
36         rm *.o $(PROGRAM)
37
38 %.o: %.c
39         $(CC) $(CFLAGS) -c $^ -I. -o $@