source: mainline/genarch/Makefile.inc@ cabc62d

lfn serial ticket/834-toolchain-update topic/msim-upgrade topic/simplify-dev-export
Last change on this file since cabc62d 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
RevLine 
[807d2d4]1#
[34d9ab28]2# Open Firmware
[807d2d4]3#
[34d9ab28]4OFW=no
5
6ifeq ($(ARCH),ppc32)
7OFW=yes
8endif
9
10ifeq ($(ARCH),sparc64)
11OFW=yes
12endif
13
[807d2d4]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
[34d9ab28]32ifeq ($(OFW),yes)
[169c408]33genarch_sources+=generic/src/genarch/firmware/ofw/ofw.c
[34d9ab28]34endif
[807d2d4]35
36ifeq ($(ACPI),yes)
[169c408]37genarch_sources+=generic/src/genarch/firmware/acpi/acpi.c \
38 generic/src/genarch/firmware/acpi/madt.c
[807d2d4]39endif
Note: See TracBrowser for help on using the repository browser.