~vojtech-horky/helenos/numa

« back to all changes in this revision

Viewing changes to boot/arch/ia64/loader/gefi/gnuefi/Makefile

  • Committer: Martin Decky
  • Date: 2009-08-04 11:19:19 UTC
  • Revision ID: martin@uranus.dsrg.hide.ms.mff.cuni.cz-20090804111919-evyclddlr3v5lhmp
Initial import

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
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
CDIR=$(TOPDIR)/..
 
26
FILES   = reloc_$(ARCH)
 
27
 
 
28
OBJS    = $(FILES:%=%.o)
 
29
 
 
30
TARGETS = crt0-efi-$(ARCH).o libgnuefi.a
 
31
 
 
32
all:    $(TARGETS)
 
33
 
 
34
libgnuefi.a: libgnuefi.a($(OBJS))
 
35
 
 
36
clean:
 
37
        rm -f $(TARGETS) *~ *.o $(OBJS)
 
38
 
 
39
install:
 
40
        mkdir -p $(INSTALLROOT)/lib
 
41
        $(INSTALL) -m 644 $(TARGETS) $(INSTALLROOT)/lib
 
42
        $(INSTALL) -m 644 elf_$(ARCH)_efi.lds $(INSTALLROOT)/lib
 
43
 
 
44
include ../Make.rules