SMM: Move wbinvd after pmode jump
[coreboot.git] / util / ectool / Makefile
blobc817395b0f2d4df57a02cbde0818c202714d0d7e
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.
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.
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
21 CC = gcc
22 CFLAGS = -O2 -Wall -W
23 PROGRAM = ectool
24 INSTALL = /usr/bin/install
25 PREFIX = /usr/local
27 all: $(PROGRAM)
29 $(PROGRAM): ec.o ectool.o
30 $(CC) $(CFLAGS) -o $@ $^
32 install: $(PROGRAM)
33 $(INSTALL) $(PROGRAM) $(PREFIX)/sbin
35 clean:
36 rm *.o $(PROGRAM)
38 %.o: %.c
39 $(CC) $(CFLAGS) -c $^ -I. -o $@