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.
19 INSTALL
= /usr
/bin
/install
21 CFLAGS
= -O2
-g
-Wall
-W
-Werror
29 $(CC
) -o
$(PROGRAM
) $(OBJS
) $(LDFLAGS
)
32 rm -f
$(PROGRAM
) *.o
*~
36 @
$(CC
) $(CFLAGS
) -MM
*.c
> .dependencies
39 $(CC
) $(CFLAGS
) -c
-o
$@
$<
42 mkdir
-p
$(DESTDIR
)$(PREFIX
)/bin
43 $(INSTALL
) $(PROGRAM
) $(DESTDIR
)$(PREFIX
)/bin
45 .PHONY
: all clean distclean dep