tree: drop last paragraph of GPL copyright header
[coreboot.git] / util / ifdtool / Makefile
blobccaef43e1c9f769ea80657cb4c045c5397414768
2 # ifdtool - dump Intel Firmware Descriptor information
4 # Copyright (C) 2011 The ChromiumOS Authors. All rights reserved.
6 # This program is free software; you can redistribute it and/or modify
7 # it under the terms of the GNU General Public License as published by
8 # the Free Software Foundation; version 2 of the License.
10 # This program is distributed in the hope that it will be useful,
11 # but WITHOUT ANY WARRANTY; without even the implied warranty of
12 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 # GNU General Public License for more details.
16 PROGRAM = ifdtool
18 CC = gcc
19 INSTALL = /usr/bin/install
20 PREFIX = /usr/local
21 CFLAGS = -O2 -g -Wall -W -Werror
22 LDFLAGS =
24 OBJS = ifdtool.o
26 all: dep $(PROGRAM)
28 $(PROGRAM): $(OBJS)
29 $(CC) -o $(PROGRAM) $(OBJS) $(LDFLAGS)
31 clean:
32 rm -f $(PROGRAM) *.o *~
34 distclean: clean
35 rm -f .dependencies
37 dep:
38 @$(CC) $(CFLAGS) -MM *.c > .dependencies
40 install: $(PROGRAM)
41 mkdir -p $(DESTDIR)$(PREFIX)/bin
42 $(INSTALL) $(PROGRAM) $(DESTDIR)$(PREFIX)/bin
43 mkdir -p $(DESTDIR)$(PREFIX)/share/man/man8
44 $(INSTALL) $(PROGRAM).8 $(DESTDIR)$(PREFIX)/share/man/man8
46 .PHONY: all clean distclean dep
48 -include .dependencies