source: mainline/genarch/Makefile.inc@ d90ca68

lfn serial ticket/834-toolchain-update topic/msim-upgrade topic/simplify-dev-export
Last change on this file since d90ca68 was 169c408, checked in by Jakub Jermar <jakub@…>, 20 years ago

Move src/ and include/ to generic.

  • Property mode set to 100644
File size: 488 bytes
Line 
1#
2# Open Firmware
3#
4OFW=no
5
6ifeq ($(ARCH),ppc32)
7OFW=yes
8endif
9
10ifeq ($(ARCH),sparc64)
11OFW=yes
12endif
13
14#
15# Advanced Configuration and Power Interface (ACPI)
16#
17ACPI=no
18
19ifeq ($(ARCH),ia32)
20ACPI=yes
21endif
22
23ifeq ($(ARCH),amd64)
24ACPI=yes
25endif
26
27ifeq ($(ARCH),ia64)
28#ACPI=yes
29endif
30
31
32ifeq ($(OFW),yes)
33genarch_sources+=generic/src/genarch/firmware/ofw/ofw.c
34endif
35
36ifeq ($(ACPI),yes)
37genarch_sources+=generic/src/genarch/firmware/acpi/acpi.c \
38 generic/src/genarch/firmware/acpi/madt.c
39endif
Note: See TracBrowser for help on using the repository browser.