Skip to content

Commit 26efe18

Browse files
author
Stefan Reinauer
committed
add shared files
git-svn-id: svn://coreboot.org/openbios/fcode-utils@77 f158a5a8-5612-0410-a976-696ce0be7e32
1 parent fbd8385 commit 26efe18

4 files changed

Lines changed: 735 additions & 0 deletions

File tree

Makefile

Lines changed: 47 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,47 @@
1+
#
2+
# OpenBIOS - free your system!
3+
# ( Utilities )
4+
#
5+
# This program is part of a free implementation of the IEEE 1275-1994
6+
# Standard for Boot (Initialization Configuration) Firmware.
7+
#
8+
# Copyright (C) 2006 coresystems GmbH <info@coresystems.de>
9+
#
10+
# This program is free software; you can redistribute it and/or modify
11+
# it under the terms of the GNU General Public License as published by
12+
# the Free Software Foundation; version 2 of the License.
13+
#
14+
# This program is distributed in the hope that it will be useful,
15+
# but WITHOUT ANY WARRANTY; without even the implied warranty of
16+
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17+
# GNU General Public License for more details.
18+
#
19+
# You should have received a copy of the GNU General Public License
20+
# along with this program; if not, write to the Free Software
21+
# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA, 02110-1301 USA
22+
#
23+
24+
all:
25+
make -C toke
26+
make -C detok
27+
make -C romheaders
28+
29+
install:
30+
make -C toke install
31+
make -C detok install
32+
make -C romheaders install
33+
34+
clean:
35+
make -C toke clean
36+
make -C detok clean
37+
make -C romheaders clean
38+
39+
distclean: clean
40+
make -C toke distclean
41+
make -C detok distclean
42+
make -C romheaders distclean
43+
44+
45+
46+
.PHONY: all clean distclean toke detok romheaders
47+

0 commit comments

Comments
 (0)