libpayload: Disable some buggy debugging code
[coreboot.git] / util / ectool / Makefile
blob16a1ce9d10e62efd8b287da2f9a1d7db9215aa3f
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 OS_ARCH = $(shell uname -o)
28 ifeq ($(OS_ARCH), Cygwin)
29 LDFLAGS = -lioperm
30 endif
32 all: $(PROGRAM)
34 $(PROGRAM): ec.o ectool.o
35 $(CC) $(CFLAGS) -o $@ $^ $(LDFLAGS)
37 install: $(PROGRAM)
38 $(INSTALL) $(PROGRAM) $(PREFIX)/sbin
40 clean:
41 rm *.o $(PROGRAM)
43 %.o: %.c
44 $(CC) $(CFLAGS) -c $^ -I. -o $@