From 716dfa4cb85cd32e18ed3a8b01404f7c540bbf6d Mon Sep 17 00:00:00 2001 From: Marius Strobl Date: Sun, 10 Jul 2005 11:47:04 +0000 Subject: [PATCH] Build blank_saver.ko, fade_saver.ko and green_saver.ko on sparc64 now that they work with creator(4) and machfb(4). Reviewed by: ru (style) Approved by: re (scottl) --- sys/modules/Makefile | 5 +---- sys/modules/syscons/Makefile | 29 ++++++++++++++++++++--------- 2 files changed, 21 insertions(+), 13 deletions(-) diff --git a/sys/modules/Makefile b/sys/modules/Makefile index 2baa505807e5..2ee623f5b67f 100644 --- a/sys/modules/Makefile +++ b/sys/modules/Makefile @@ -277,11 +277,8 @@ SUBDIR= ${_3dfx} \ ${_xe} \ xl -.if ${MACHINE_ARCH} != "sparc64" && ${MACHINE_ARCH} != "powerpc" -_syscons= syscons -.endif - .if ${MACHINE_ARCH} != "powerpc" +_syscons= syscons _uart= uart _vpo= vpo .endif diff --git a/sys/modules/syscons/Makefile b/sys/modules/syscons/Makefile index b6cac1c93a33..71e84d040613 100644 --- a/sys/modules/syscons/Makefile +++ b/sys/modules/syscons/Makefile @@ -2,19 +2,30 @@ SUBDIR= ${_apm} \ blank \ - daemon \ - dragon \ + ${_daemon} \ + ${_dragon} \ fade \ - fire \ + ${_fire} \ green \ - logo \ - rain \ - snake \ - star \ - warp + ${_logo} \ + ${_rain} \ + ${_snake} \ + ${_star} \ + ${_warp} .if ${MACHINE_ARCH} == "i386" -_apm= apm +_apm= apm +.endif + +.if ${MACHINE_ARCH} != "sparc64" +_daemon= daemon +_dragon= dragon +_fire= fire +_logo= logo +_rain= rain +_snake= snake +_star= star +_warp= warp .endif .include