source: mainline/boot/arch/ia64/Makefile.inc@ 87a31ef2

Last change on this file since 87a31ef2 was 687108b, checked in by Jiří Zárevúcky <zarevucky.jiri@…>, 6 years ago

Remove unused makefile variables

  • Property mode set to 100644
File size: 2.7 KB
Line 
1#
2# Copyright (c) 2006 Martin Decky
3# All rights reserved.
4#
5# Redistribution and use in source and binary forms, with or without
6# modification, are permitted provided that the following conditions
7# are met:
8#
9# - Redistributions of source code must retain the above copyright
10# notice, this list of conditions and the following disclaimer.
11# - Redistributions in binary form must reproduce the above copyright
12# notice, this list of conditions and the following disclaimer in the
13# documentation and/or other materials provided with the distribution.
14# - The name of the author may not be used to endorse or promote products
15# derived from this software without specific prior written permission.
16#
17# THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
18# IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
19# OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
20# IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
21# INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
22# NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
26# THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27#
28
29BFD_NAME = elf64-ia64-little
30BFD_OUTPUT = $(BFD_NAME)
31
32BITS = 64
33ENDIANESS = LE
34EXTRA_CFLAGS = -fno-unwind-tables -mfixed-range=f32-f127 -mno-pic -mno-sdata
35
36RD_SRVS_NON_ESSENTIAL +=
37
38RD_SRVS_ESSENTIAL +=
39
40SOURCES = \
41 arch/$(BARCH)/src/boot.S \
42 arch/$(BARCH)/src/asm.S \
43 arch/$(BARCH)/src/main.c \
44 arch/$(BARCH)/src/sal.c \
45 arch/$(BARCH)/src/sal_asm.S \
46 arch/$(BARCH)/src/pal.c \
47 arch/$(BARCH)/src/pal_asm.S \
48 arch/$(BARCH)/src/putchar.c \
49 $(COMPS).o \
50 genarch/src/efi.c \
51 genarch/src/division.c \
52 generic/src/balloc.c \
53 generic/src/memstr.c \
54 generic/src/printf_core.c \
55 generic/src/vprintf.c \
56 generic/src/printf.c \
57 generic/src/str.c \
58 generic/src/version.c \
59 generic/src/inflate.c \
60 generic/src/tar.c \
61 generic/src/gzip.c \
62 generic/src/kernel.c \
63 generic/src/payload.c
64
65ifeq ($(MACHINE),ski)
66SOURCES += \
67 arch/$(BARCH)/src/ski.c
68endif
69
70ifeq ($(MACHINE),i460GX)
71RD_DRVS_ESSENTIAL += \
72 platform/pc \
73 bus/pci/pciintel \
74 bus/isa \
75 char/i8042 \
76 hid/xtkbd
77
78RD_DRVS_NON_ESSENTIAL += \
79 char/ns8250 \
80 time/cmos-rtc \
81 bus/usb/ehci\
82 bus/usb/ohci \
83 bus/usb/uhci \
84 bus/usb/usbdiag \
85 bus/usb/usbflbk \
86 bus/usb/usbhub \
87 bus/usb/usbmid \
88 bus/usb/vhc \
89 block/usbmast \
90 hid/usbhid
91
92RD_DRV_CFG += \
93 bus/isa
94endif
95
96ifeq ($(MACHINE),ski)
97RD_DRVS_ESSENTIAL += \
98 char/ski-con \
99 platform/ski
100endif
Note: See TracBrowser for help on using the repository browser.