From 9a780e6f08ac2732585dd369dea195e3a433c044 Mon Sep 17 00:00:00 2001 From: nyan Date: Wed, 20 Apr 2005 12:28:20 +0000 Subject: [PATCH] Rename from apm_bioscall.s to apm_bioscall.S for removing a special rule to build a module. A repo-copy is not done because it has no important logs. Pointed out by: ru --- sys/conf/files.pc98 | 2 +- sys/modules/apm/Makefile | 7 +------ sys/pc98/apm/{apm_bioscall.s => apm_bioscall.S} | 0 3 files changed, 2 insertions(+), 7 deletions(-) rename sys/pc98/apm/{apm_bioscall.s => apm_bioscall.S} (100%) diff --git a/sys/conf/files.pc98 b/sys/conf/files.pc98 index 5c72f8444a63..5b02f8ccc495 100644 --- a/sys/conf/files.pc98 +++ b/sys/conf/files.pc98 @@ -346,7 +346,7 @@ libkern/qdivrem.c standard libkern/ucmpdi2.c standard libkern/udivdi3.c standard libkern/umoddi3.c standard -pc98/apm/apm_bioscall.s optional apm +pc98/apm/apm_bioscall.S optional apm pc98/i386/busio.s standard pc98/i386/busiosubr.c standard pc98/i386/machdep.c standard diff --git a/sys/modules/apm/Makefile b/sys/modules/apm/Makefile index c3503536d198..96703b15fab6 100644 --- a/sys/modules/apm/Makefile +++ b/sys/modules/apm/Makefile @@ -8,16 +8,11 @@ KMOD= apm SRCS= apm.c apm.h .if ${MACHINE} == "pc98" -SRCS+= apm_bioscall.s +SRCS+= apm_bioscall.S .endif SRCS+= device_if.h bus_if.h EXPORT_SYMS= apm_display \ apm_softc -.if ${MACHINE} == "pc98" -apm_bioscall.o: apm_bioscall.s - ${CC} -x assembler-with-cpp -DLOCORE ${CFLAGS} -c ${.IMPSRC} -.endif - .include diff --git a/sys/pc98/apm/apm_bioscall.s b/sys/pc98/apm/apm_bioscall.S similarity index 100% rename from sys/pc98/apm/apm_bioscall.s rename to sys/pc98/apm/apm_bioscall.S