Rev 3343 | Details | Compare with Previous | Last modification | View Log | RSS feed
Rev | Author | Line No. | Line |
---|---|---|---|
2726 | vana | 1 | # |
2 | # Copyright (C) 1999-2001 Hewlett-Packard Co. |
||
3 | # Contributed by David Mosberger <davidm@hpl.hp.com> |
||
4 | # Contributed by Stephane Eranian <eranian@hpl.hp.com> |
||
5 | # |
||
6 | # This file is part of the gnu-efi package. |
||
7 | # |
||
8 | # GNU-EFI is free software; you can redistribute it and/or modify |
||
9 | # it under the terms of the GNU General Public License as published by |
||
10 | # the Free Software Foundation; either version 2, or (at your option) |
||
11 | # any later version. |
||
12 | # |
||
13 | # GNU-EFI is distributed in the hope that it will be useful, |
||
14 | # but WITHOUT ANY WARRANTY; without even the implied warranty of |
||
15 | # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
||
16 | # GNU General Public License for more details. |
||
17 | # |
||
18 | # You should have received a copy of the GNU General Public License |
||
19 | # along with GNU-EFI; see the file COPYING. If not, write to the Free |
||
20 | # Software Foundation, 59 Temple Place - Suite 330, Boston, MA |
||
21 | # 02111-1307, USA. |
||
22 | # |
||
23 | |||
24 | include Make.defaults |
||
25 | |||
3742 | rimsky | 26 | SUBDIRS = lib gnuefi inc |
2726 | vana | 27 | |
28 | all: check_gcc $(SUBDIRS) |
||
29 | |||
30 | $(SUBDIRS): |
||
31 | $(MAKE) -C $@ |
||
32 | |||
33 | clean: |
||
34 | rm -f *~ |
||
35 | @for d in $(SUBDIRS); do $(MAKE) -C $$d clean; done |
||
36 | |||
37 | install: |
||
38 | @for d in $(SUBDIRS); do $(MAKE) -C $$d install; done |
||
39 | |||
40 | .PHONY: $(SUBDIRS) clean depend |
||
41 | |||
42 | # |
||
43 | # on both platforms you must use gcc 3.0 or higher |
||
44 | # |
||
45 | check_gcc: |
||
46 | ifeq ($(GCC_VERSION),2) |
||
47 | @echo "you need to use a version of gcc >= 3.0, you are using `$(CC) --version`" |
||
48 | @exit 1 |
||
49 | endif |
||
50 | |||
51 | include Make.rules |