1998-06-10 10:57:29 +00:00
|
|
|
# Makefile.alpha -- with config changes.
|
|
|
|
# Copyright 1990 W. Jolitz
|
|
|
|
# from: @(#)Makefile.alpha 7.1 5/10/91
|
1999-08-28 01:08:13 +00:00
|
|
|
# $FreeBSD$
|
1998-06-10 10:57:29 +00:00
|
|
|
#
|
|
|
|
# Makefile for FreeBSD
|
|
|
|
#
|
|
|
|
# This makefile is constructed from a machine description:
|
|
|
|
# config machineid
|
|
|
|
# Most changes should be made in the machine description
|
|
|
|
# /sys/alpha/conf/``machineid''
|
|
|
|
# after which you should do
|
|
|
|
# config machineid
|
|
|
|
# Generic makefile changes should be made in
|
|
|
|
# /sys/alpha/conf/Makefile.alpha
|
|
|
|
# after which config should be rerun for all machines.
|
|
|
|
#
|
|
|
|
|
|
|
|
# Which version of config(8) is required.
|
2001-01-19 12:50:16 +00:00
|
|
|
%VERSREQ= 500006
|
1998-06-10 10:57:29 +00:00
|
|
|
|
1999-05-10 03:02:22 +00:00
|
|
|
# Can be overridden by makeoptions or /etc/make.conf
|
2000-09-14 15:17:19 +00:00
|
|
|
KERNEL_KO?= kernel
|
1999-05-10 03:02:22 +00:00
|
|
|
KERNEL?= kernel
|
2000-09-05 22:37:46 +00:00
|
|
|
KODIR?= /boot/${KERNEL}
|
1998-06-10 10:57:29 +00:00
|
|
|
STD8X16FONT?= iso
|
|
|
|
|
1999-10-30 09:28:27 +00:00
|
|
|
.if !defined(S)
|
1998-06-10 10:57:29 +00:00
|
|
|
.if exists(./@/.)
|
|
|
|
S= ./@
|
|
|
|
.else
|
|
|
|
S= ../..
|
|
|
|
.endif
|
1999-10-30 09:28:27 +00:00
|
|
|
.endif
|
2000-01-09 14:56:07 +00:00
|
|
|
M= ${MACHINE_ARCH}
|
1998-06-10 10:57:29 +00:00
|
|
|
|
2000-06-12 20:22:07 +00:00
|
|
|
SIZE?= size
|
|
|
|
OBJCOPY?= objcopy
|
1998-06-14 13:46:10 +00:00
|
|
|
|
2001-03-12 07:47:09 +00:00
|
|
|
COPTFLAGS?=-O -pipe
|
|
|
|
.if !defined(NO_CPU_COPTFLAGS)
|
|
|
|
COPTFLAGS+= ${_CPUCFLAGS}
|
|
|
|
.endif
|
2000-12-08 22:26:48 +00:00
|
|
|
INCLUDES= -nostdinc -I- ${INCLMAGIC} -I. -I$S -I$S/dev
|
2001-06-12 06:06:18 +00:00
|
|
|
|
|
|
|
# This hack lets us use the ipfilter code without spamming a new
|
|
|
|
# include path into 100+ source files.
|
|
|
|
INCLUDES+= -I$S/contrib/ipfilter
|
|
|
|
|
1998-06-10 10:57:29 +00:00
|
|
|
# This hack is to allow kernel compiles to succeed on machines w/out srcdist
|
|
|
|
.if exists($S/../include)
|
|
|
|
INCLUDES+= -I$S/../include
|
|
|
|
.else
|
|
|
|
INCLUDES+= -I/usr/include
|
|
|
|
.endif
|
2001-06-07 04:06:21 +00:00
|
|
|
|
2000-01-06 13:14:51 +00:00
|
|
|
COPTS= ${INCLUDES} ${IDENT} -D_KERNEL -include opt_global.h
|
1998-12-17 22:36:21 +00:00
|
|
|
CFLAGS= ${COPTFLAGS} ${CWARNFLAGS} ${DEBUG} ${COPTS}
|
1999-11-22 15:39:13 +00:00
|
|
|
|
|
|
|
# XXX LOCORE means "don't declare C stuff" not "for locore.s".
|
|
|
|
ASM_CFLAGS= -x assembler-with-cpp -DLOCORE ${CFLAGS}
|
|
|
|
|
2000-01-08 17:31:35 +00:00
|
|
|
# Select the correct set of tools. Can't set OBJFORMAT here because it
|
|
|
|
# doesn't get exported into the environment, and if it were exported
|
|
|
|
# then it might break building of utilities.
|
|
|
|
FMT= -elf
|
1999-11-22 15:39:13 +00:00
|
|
|
CFLAGS+= ${FMT}
|
|
|
|
|
1998-06-10 10:57:29 +00:00
|
|
|
DEFINED_PROF= ${PROF}
|
|
|
|
.if defined(PROF)
|
|
|
|
CFLAGS+= -malign-functions=4
|
|
|
|
.if ${PROFLEVEL} >= 2
|
|
|
|
IDENT+= -DGPROF4 -DGUPROF
|
|
|
|
PROF+= -mprofiler-epilogue
|
|
|
|
.endif
|
|
|
|
.endif
|
|
|
|
|
1999-11-22 15:39:13 +00:00
|
|
|
# Put configuration-specific C flags last (except for ${PROF}) so that they
|
|
|
|
# can override the others.
|
|
|
|
CFLAGS+= ${CONF_CFLAGS}
|
1998-06-10 10:57:29 +00:00
|
|
|
|
2000-01-08 16:43:46 +00:00
|
|
|
NORMAL_C= ${CC} -c ${CFLAGS} ${PROF} ${.IMPSRC}
|
|
|
|
NORMAL_C_C= ${CC} -c ${CFLAGS} ${PROF} ${.IMPSRC}
|
|
|
|
NORMAL_S= ${CC} -c ${ASM_CFLAGS} ${.IMPSRC}
|
|
|
|
PROFILE_C= ${CC} -c ${CFLAGS} ${.IMPSRC}
|
1998-06-14 13:46:10 +00:00
|
|
|
|
2000-04-08 14:17:18 +00:00
|
|
|
NORMAL_M= perl5 $S/kern/makeobjops.pl -c $<; \
|
2000-04-05 10:33:55 +00:00
|
|
|
${CC} -c ${CFLAGS} ${PROF} ${.PREFIX}.c
|
|
|
|
|
2000-01-07 05:12:12 +00:00
|
|
|
GEN_CFILES= $S/$M/$M/genassym.c
|
Borrow phk's axe and apply the next stage of config(8)'s evolution.
Use Warner Losh's "hint" driver to decode ascii strings to fill the
resource table at boot time.
config(8) no longer generates an ioconf.c table - ie: the configuration
no longer has to be compiled into the kernel. You can reconfigure your
isa devices with the likes of this at loader(8) time:
set hint.ed.0.port=0x320
userconfig will be rewritten to use this style interface one day and will
move to /boot/userconfig.4th or something like that.
It is still possible to statically compile in a set of hints into a kernel
if you do not wish to use loader(8). See the "hints" directive in GENERIC
as an example.
All device wiring has been moved out of config(8). There is a set of
helper scripts (see i386/conf/gethints.pl, and the same for alpha and pc98)
that extract the 'at isa? port foo irq bar' from the old files and produces
a hints file. If you install this file as /boot/device.hints (and update
/boot/defaults/loader.conf - You can do a build/install in sys/boot) then
loader will load it automatically for you. You can also compile in the
hints directly with: hints "device.hints" as well.
There are a few things that I'm not too happy with yet. Under this scheme,
things like LINT would no longer be useful as "documentation" of settings.
I have renamed this file to 'NOTES' and stored the example hints strings
in it. However... this is not something that config(8) understands, so
there is a script that extracts the build-specific data from the
documentation file (NOTES) to produce a LINT that can be config'ed and
built. A stack of man4 pages will need updating. :-/
Also, since there is no longer a difference between 'device' and
'pseudo-device' I collapsed the two together, and the resulting 'device'
takes a 'number of units' for devices that still have it statically
allocated. eg: 'device fe 4' will compile the fe driver with NFE set
to 4. You can then set hints for 4 units (0 - 3). Also note that
'device fe0' will be interpreted as "zero units of 'fe'" which would be
bad, so there is a config warning for this. This is only needed for
old drivers that still have static limits on numbers of units.
All the statically limited drivers that I could find were marked.
Please exercise EXTREME CAUTION when transitioning!
Moral support by: phk, msmith, dfr, asmodai, imp, and others
2000-06-13 22:28:50 +00:00
|
|
|
SYSTEM_CFILES= param.c vnode_if.c hints.c config.c
|
2000-01-07 05:12:12 +00:00
|
|
|
SYSTEM_SFILES= $S/$M/$M/locore.s
|
1999-06-28 09:18:44 +00:00
|
|
|
SYSTEM_DEP= Makefile ${SYSTEM_OBJS}
|
2001-06-13 10:58:39 +00:00
|
|
|
SYSTEM_OBJS= locore.o vnode_if.o ${OBJS} param.o hints.o config.o hack.So
|
2000-01-09 15:29:10 +00:00
|
|
|
SYSTEM_LD= @${LD} ${FMT} -Bdynamic -T $S/conf/ldscript.$M \
|
1999-11-22 15:39:13 +00:00
|
|
|
-e locorestart \
|
|
|
|
-export-dynamic -dynamic-linker /red/herring \
|
|
|
|
-o ${.TARGET} -X ${SYSTEM_OBJS} vers.o
|
2000-06-12 20:22:07 +00:00
|
|
|
SYSTEM_LD_TAIL= @${OBJCOPY} --strip-symbol gcc2_compiled. ${.TARGET} ; \
|
|
|
|
${SIZE} ${FMT} ${.TARGET} ; chmod 755 ${.TARGET}
|
2000-01-09 15:29:10 +00:00
|
|
|
SYSTEM_DEP+= $S/conf/ldscript.$M
|
1999-04-13 18:35:28 +00:00
|
|
|
|
1998-06-10 10:57:29 +00:00
|
|
|
%BEFORE_DEPEND
|
|
|
|
|
|
|
|
%OBJS
|
|
|
|
|
2000-11-25 03:25:34 +00:00
|
|
|
%FILES.c
|
1998-06-10 10:57:29 +00:00
|
|
|
|
2000-11-25 03:25:34 +00:00
|
|
|
%FILES.s
|
1998-06-10 10:57:29 +00:00
|
|
|
|
2000-11-25 03:25:34 +00:00
|
|
|
%FILES.m
|
1998-09-07 07:29:30 +00:00
|
|
|
|
1998-06-10 10:57:29 +00:00
|
|
|
%CLEAN
|
|
|
|
|
2000-05-09 10:39:38 +00:00
|
|
|
.PHONY: all modules
|
2000-09-05 22:37:46 +00:00
|
|
|
all: ${KERNEL_KO}
|
1999-05-10 03:02:22 +00:00
|
|
|
|
Add {kernel,module}-{depend,clean,cleandepend,tags,install,reinstall}
targets. The {depend,clean,cleandepend,tags,install,reinstall} targets
are composits of the {kernel,module}-* targets (based on NO_MODULES).
2000-05-13 03:15:37 +00:00
|
|
|
depend: kernel-depend
|
|
|
|
clean: kernel-clean
|
|
|
|
cleandepend: kernel-cleandepend
|
2001-02-27 08:13:32 +00:00
|
|
|
clobber: kernel-clobber
|
Add {kernel,module}-{depend,clean,cleandepend,tags,install,reinstall}
targets. The {depend,clean,cleandepend,tags,install,reinstall} targets
are composits of the {kernel,module}-* targets (based on NO_MODULES).
2000-05-13 03:15:37 +00:00
|
|
|
tags: kernel-tags
|
2001-01-19 19:43:45 +00:00
|
|
|
install: kernel-install
|
|
|
|
install.debug: kernel-install.debug
|
|
|
|
reinstall: kernel-reinstall
|
|
|
|
reinstall.debug: kernel-reinstall.debug
|
Add {kernel,module}-{depend,clean,cleandepend,tags,install,reinstall}
targets. The {depend,clean,cleandepend,tags,install,reinstall} targets
are composits of the {kernel,module}-* targets (based on NO_MODULES).
2000-05-13 03:15:37 +00:00
|
|
|
|
1999-05-10 03:02:22 +00:00
|
|
|
.if !defined(DEBUG)
|
2000-09-05 22:37:46 +00:00
|
|
|
FULLKERNEL= ${KERNEL_KO}
|
1999-05-10 03:02:22 +00:00
|
|
|
.else
|
2000-09-05 22:37:46 +00:00
|
|
|
FULLKERNEL= ${KERNEL_KO}.debug
|
|
|
|
${KERNEL_KO}: ${FULLKERNEL}
|
|
|
|
${OBJCOPY} --strip-debug ${FULLKERNEL} ${KERNEL_KO}
|
1999-05-10 03:02:22 +00:00
|
|
|
.endif
|
|
|
|
|
1999-12-27 12:06:11 +00:00
|
|
|
${FULLKERNEL}: ${SYSTEM_DEP} vers.o
|
1999-05-10 03:02:22 +00:00
|
|
|
@rm -f ${.TARGET}
|
|
|
|
@echo linking ${.TARGET}
|
|
|
|
${SYSTEM_LD}
|
|
|
|
${SYSTEM_LD_TAIL}
|
2000-05-09 10:39:38 +00:00
|
|
|
|
1998-12-07 22:36:54 +00:00
|
|
|
.if !exists(.depend)
|
2000-04-05 10:33:55 +00:00
|
|
|
${SYSTEM_OBJS}: vnode_if.h ${BEFORE_DEPEND:M*.h} ${MFILES:T:S/.m$/.h/}
|
1998-12-07 22:36:54 +00:00
|
|
|
.endif
|
|
|
|
|
2000-04-05 10:33:55 +00:00
|
|
|
.for mfile in ${MFILES}
|
|
|
|
${mfile:T:S/.m$/.h/}: ${mfile}
|
2000-04-08 14:17:18 +00:00
|
|
|
perl5 $S/kern/makeobjops.pl -h ${mfile}
|
2000-04-05 10:33:55 +00:00
|
|
|
.endfor
|
|
|
|
|
Add {kernel,module}-{depend,clean,cleandepend,tags,install,reinstall}
targets. The {depend,clean,cleandepend,tags,install,reinstall} targets
are composits of the {kernel,module}-* targets (based on NO_MODULES).
2000-05-13 03:15:37 +00:00
|
|
|
kernel-clean:
|
2000-06-02 09:27:48 +00:00
|
|
|
rm -f *.o *.so *.So *.ko *.s eddep errs \
|
2000-09-05 22:37:46 +00:00
|
|
|
${FULLKERNEL} ${KERNEL_KO} linterrs makelinks param.c \
|
2000-01-08 16:43:46 +00:00
|
|
|
setdef[01].c setdefs.h tags \
|
2000-04-05 10:33:55 +00:00
|
|
|
vers.c vnode_if.c vnode_if.h \
|
|
|
|
${MFILES:T:S/.m$/.c/} ${MFILES:T:S/.m$/.h/} \
|
|
|
|
${CLEAN}
|
1998-06-10 10:57:29 +00:00
|
|
|
|
2001-02-27 08:13:32 +00:00
|
|
|
kernel-clobber:
|
|
|
|
find . -type f ! -name version -delete
|
|
|
|
|
1998-06-10 10:57:29 +00:00
|
|
|
#lint: /tmp param.c
|
1999-11-22 15:39:13 +00:00
|
|
|
# @lint -hbxn -DGENERIC -Dvolatile= ${COPTS} \
|
Borrow phk's axe and apply the next stage of config(8)'s evolution.
Use Warner Losh's "hint" driver to decode ascii strings to fill the
resource table at boot time.
config(8) no longer generates an ioconf.c table - ie: the configuration
no longer has to be compiled into the kernel. You can reconfigure your
isa devices with the likes of this at loader(8) time:
set hint.ed.0.port=0x320
userconfig will be rewritten to use this style interface one day and will
move to /boot/userconfig.4th or something like that.
It is still possible to statically compile in a set of hints into a kernel
if you do not wish to use loader(8). See the "hints" directive in GENERIC
as an example.
All device wiring has been moved out of config(8). There is a set of
helper scripts (see i386/conf/gethints.pl, and the same for alpha and pc98)
that extract the 'at isa? port foo irq bar' from the old files and produces
a hints file. If you install this file as /boot/device.hints (and update
/boot/defaults/loader.conf - You can do a build/install in sys/boot) then
loader will load it automatically for you. You can also compile in the
hints directly with: hints "device.hints" as well.
There are a few things that I'm not too happy with yet. Under this scheme,
things like LINT would no longer be useful as "documentation" of settings.
I have renamed this file to 'NOTES' and stored the example hints strings
in it. However... this is not something that config(8) understands, so
there is a script that extracts the build-specific data from the
documentation file (NOTES) to produce a LINT that can be config'ed and
built. A stack of man4 pages will need updating. :-/
Also, since there is no longer a difference between 'device' and
'pseudo-device' I collapsed the two together, and the resulting 'device'
takes a 'number of units' for devices that still have it statically
allocated. eg: 'device fe 4' will compile the fe driver with NFE set
to 4. You can then set hints for 4 units (0 - 3). Also note that
'device fe0' will be interpreted as "zero units of 'fe'" which would be
bad, so there is a config warning for this. This is only needed for
old drivers that still have static limits on numbers of units.
All the statically limited drivers that I could find were marked.
Please exercise EXTREME CAUTION when transitioning!
Moral support by: phk, msmith, dfr, asmodai, imp, and others
2000-06-13 22:28:50 +00:00
|
|
|
# $S/$M/$M/Locore.c ${CFILES} param.c | \
|
1998-06-10 10:57:29 +00:00
|
|
|
# grep -v 'struct/union .* never defined' | \
|
|
|
|
# grep -v 'possible pointer alignment problem'
|
|
|
|
|
2000-01-07 05:12:12 +00:00
|
|
|
locore.o: $S/$M/$M/locore.s assym.s
|
1998-06-10 10:57:29 +00:00
|
|
|
${NORMAL_S}
|
|
|
|
|
1999-11-22 15:39:13 +00:00
|
|
|
# This is a hack. BFD "optimizes" away dynamic mode if there are no
|
|
|
|
# dynamic references. We could probably do a '-Bforcedynamic' mode like
|
|
|
|
# in the a.out ld. For now, this works.
|
1999-01-09 21:51:00 +00:00
|
|
|
hack.So: Makefile
|
1999-11-22 15:39:13 +00:00
|
|
|
touch hack.c
|
2000-01-07 05:12:12 +00:00
|
|
|
${CC} ${FMT} -shared -nostdlib hack.c -o hack.So
|
Lots of changes, including:
* Support for AlphaStation 200, 250, 255, 400
* Untested support for UDB, Multia, AXPpci33 (Noname)
* Support for Personal Workstation 433a/433au, 500a/500au, 600a/600au (Miata)
* Some minor fixes and improvements to interrupt handling.
Submitted by: Andrew Gallatin <gallatin@cs.duke.edu> (AS200, Miata)
Obtained from: NetBSD (some code for AS200, Miata, Noname)
1998-08-10 07:53:59 +00:00
|
|
|
rm -f hack.c
|
|
|
|
|
1998-06-10 10:57:29 +00:00
|
|
|
# this rule stops ./assym.s in .depend from causing problems
|
|
|
|
./assym.s: assym.s
|
|
|
|
|
2000-06-02 09:27:48 +00:00
|
|
|
assym.s: $S/kern/genassym.sh genassym.o
|
2001-02-25 07:51:19 +00:00
|
|
|
OBJFORMAT=elf sh $S/kern/genassym.sh genassym.o > ${.TARGET}
|
1998-06-10 10:57:29 +00:00
|
|
|
|
2000-01-07 05:12:12 +00:00
|
|
|
genassym.o: $S/$M/$M/genassym.c
|
2001-02-25 07:51:19 +00:00
|
|
|
${CC} -c ${CFLAGS} -elf $S/$M/$M/genassym.c
|
1998-06-10 10:57:29 +00:00
|
|
|
|
|
|
|
SYSTEM_OBJS+= __divqu.o __divq.o __divlu.o __divl.o
|
|
|
|
SYSTEM_OBJS+= __remqu.o __remq.o __remlu.o __reml.o
|
|
|
|
CLEAN+= __divqu.S __divq.S __divlu.S __divl.S
|
|
|
|
CLEAN+= __remqu.S __remq.S __remlu.S __reml.S
|
|
|
|
|
2000-01-07 05:12:12 +00:00
|
|
|
__divqu.S: $S/$M/$M/divrem.m4
|
1998-06-10 10:57:29 +00:00
|
|
|
@echo 'building ${.TARGET} from ${.ALLSRC}'
|
|
|
|
@(echo "define(NAME,\`__divqu')define(OP,\`div')define(S,\`false')"; \
|
|
|
|
echo "define(WORDSIZE,64)"; cat ${.ALLSRC}) | m4 > ${.TARGET}
|
|
|
|
|
2000-01-07 05:12:12 +00:00
|
|
|
__divq.S: $S/$M/$M/divrem.m4
|
1998-06-10 10:57:29 +00:00
|
|
|
@echo 'building ${.TARGET} from ${.ALLSRC}'
|
|
|
|
@(echo "define(NAME,\`__divq')define(OP,\`div')define(S,\`true')"; \
|
|
|
|
echo "define(WORDSIZE,64)"; cat ${.ALLSRC}) | m4 > ${.TARGET}
|
|
|
|
|
2000-01-07 05:12:12 +00:00
|
|
|
__divlu.S: $S/$M/$M/divrem.m4
|
1998-06-10 10:57:29 +00:00
|
|
|
@echo 'building ${.TARGET} from ${.ALLSRC}'
|
|
|
|
@(echo "define(NAME,\`__divlu')define(OP,\`div')define(S,\`false')"; \
|
|
|
|
echo "define(WORDSIZE,32)"; cat ${.ALLSRC}) | m4 > ${.TARGET}
|
|
|
|
|
2000-01-07 05:12:12 +00:00
|
|
|
__divl.S: $S/$M/$M/divrem.m4
|
1998-06-10 10:57:29 +00:00
|
|
|
@echo 'building ${.TARGET} from ${.ALLSRC}'
|
|
|
|
@(echo "define(NAME,\`__divl')define(OP,\`div')define(S,\`true')"; \
|
|
|
|
echo "define(WORDSIZE,32)"; cat ${.ALLSRC}) | m4 > ${.TARGET}
|
|
|
|
|
2000-01-07 05:12:12 +00:00
|
|
|
__remqu.S: $S/$M/$M/divrem.m4
|
1998-06-10 10:57:29 +00:00
|
|
|
@echo 'building ${.TARGET} from ${.ALLSRC}'
|
|
|
|
@(echo "define(NAME,\`__remqu')define(OP,\`rem')define(S,\`false')"; \
|
|
|
|
echo "define(WORDSIZE,64)"; cat ${.ALLSRC}) | m4 > ${.TARGET}
|
|
|
|
|
2000-01-07 05:12:12 +00:00
|
|
|
__remq.S: $S/$M/$M/divrem.m4
|
1998-06-10 10:57:29 +00:00
|
|
|
@echo 'building ${.TARGET} from ${.ALLSRC}'
|
|
|
|
@(echo "define(NAME,\`__remq')define(OP,\`rem')define(S,\`true')"; \
|
|
|
|
echo "define(WORDSIZE,64)"; cat ${.ALLSRC}) | m4 > ${.TARGET}
|
|
|
|
|
2000-01-07 05:12:12 +00:00
|
|
|
__remlu.S: $S/$M/$M/divrem.m4
|
1998-06-10 10:57:29 +00:00
|
|
|
@echo 'building ${.TARGET} from ${.ALLSRC}'
|
|
|
|
@(echo "define(NAME,\`__remlu')define(OP,\`rem')define(S,\`false')"; \
|
|
|
|
echo "define(WORDSIZE,32)"; cat ${.ALLSRC}) | m4 > ${.TARGET}
|
|
|
|
|
2000-01-07 05:12:12 +00:00
|
|
|
__reml.S: $S/$M/$M/divrem.m4
|
1998-06-10 10:57:29 +00:00
|
|
|
@echo 'building ${.TARGET} from ${.ALLSRC}'
|
|
|
|
@(echo "define(NAME,\`__reml')define(OP,\`rem')define(S,\`true')"; \
|
|
|
|
echo "define(WORDSIZE,32)"; cat ${.ALLSRC}) | m4 > ${.TARGET}
|
|
|
|
|
1999-11-22 15:39:13 +00:00
|
|
|
${SYSTEM_OBJS} genassym.o vers.o: opt_global.h
|
1998-06-10 10:57:29 +00:00
|
|
|
|
2001-02-12 05:55:33 +00:00
|
|
|
kernel-depend:
|
2001-03-24 08:44:28 +00:00
|
|
|
rm -f .olddep
|
|
|
|
if [ -f .depend ]; then mv .depend .olddep; fi
|
2001-02-12 05:55:33 +00:00
|
|
|
${MAKE} _kernel-depend
|
|
|
|
|
|
|
|
_kernel-depend: assym.s param.c vnode_if.h ${BEFORE_DEPEND} \
|
2000-04-05 10:33:55 +00:00
|
|
|
${CFILES} ${SYSTEM_CFILES} ${GEN_CFILES} ${SFILES} \
|
|
|
|
${SYSTEM_SFILES} ${MFILES:T:S/.m$/.h/}
|
2001-03-24 08:44:28 +00:00
|
|
|
if [ -f .olddep ]; then mv .olddep .depend; fi
|
1998-06-10 10:57:29 +00:00
|
|
|
rm -f .newdep
|
2000-01-08 16:43:46 +00:00
|
|
|
mkdep -a -f .newdep ${CFLAGS} ${CFILES} ${SYSTEM_CFILES} ${GEN_CFILES}
|
1999-11-22 15:39:13 +00:00
|
|
|
env MKDEP_CPP="${CC} -E" \
|
|
|
|
mkdep -a -f .newdep ${ASM_CFLAGS} ${SFILES} ${SYSTEM_SFILES}
|
1998-06-10 10:57:29 +00:00
|
|
|
rm -f .depend
|
2001-03-24 08:44:28 +00:00
|
|
|
mv .newdep .depend
|
1998-06-10 10:57:29 +00:00
|
|
|
|
Add {kernel,module}-{depend,clean,cleandepend,tags,install,reinstall}
targets. The {depend,clean,cleandepend,tags,install,reinstall} targets
are composits of the {kernel,module}-* targets (based on NO_MODULES).
2000-05-13 03:15:37 +00:00
|
|
|
kernel-cleandepend:
|
1998-06-10 10:57:29 +00:00
|
|
|
rm -f .depend
|
|
|
|
|
|
|
|
links:
|
1999-05-10 03:02:22 +00:00
|
|
|
egrep '#if' ${CFILES} | sed -f $S/conf/defines | \
|
1998-06-10 10:57:29 +00:00
|
|
|
sed -e 's/:.*//' -e 's/\.c/.o/' | sort -u > dontlink
|
1999-05-10 03:02:22 +00:00
|
|
|
echo ${CFILES} | tr -s ' ' '\12' | sed 's/\.c/.o/' | \
|
1998-06-10 10:57:29 +00:00
|
|
|
sort -u | comm -23 - dontlink | \
|
|
|
|
sed 's,../.*/\(.*.o\),rm -f \1;ln -s ../GENERIC/\1 \1,' > makelinks
|
2000-11-17 21:25:15 +00:00
|
|
|
sh makelinks; rm -f dontlink
|
1998-06-10 10:57:29 +00:00
|
|
|
|
Add {kernel,module}-{depend,clean,cleandepend,tags,install,reinstall}
targets. The {depend,clean,cleandepend,tags,install,reinstall} targets
are composits of the {kernel,module}-* targets (based on NO_MODULES).
2000-05-13 03:15:37 +00:00
|
|
|
kernel-tags:
|
1999-07-02 04:16:57 +00:00
|
|
|
@[ -f .depend ] || { echo "you must make depend first"; exit 1; }
|
|
|
|
sh $S/conf/systags.sh
|
|
|
|
rm -f tags1
|
|
|
|
sed -e 's, ../, ,' tags > tags1
|
1999-11-22 15:39:13 +00:00
|
|
|
|
Add {kernel,module}-{depend,clean,cleandepend,tags,install,reinstall}
targets. The {depend,clean,cleandepend,tags,install,reinstall} targets
are composits of the {kernel,module}-* targets (based on NO_MODULES).
2000-05-13 03:15:37 +00:00
|
|
|
kernel-install kernel-install.debug:
|
2000-09-07 05:50:07 +00:00
|
|
|
.if exists(${DESTDIR}/boot)
|
2000-08-25 19:16:43 +00:00
|
|
|
@if [ ! -f ${DESTDIR}/boot/device.hints ] ; then \
|
2000-09-06 09:27:25 +00:00
|
|
|
echo "You must set up a ${DESTDIR}/boot/device.hints file first." ; \
|
2000-08-25 19:16:43 +00:00
|
|
|
exit 1 ; \
|
|
|
|
fi
|
2000-09-06 09:27:25 +00:00
|
|
|
@if [ x"`grep device.hints ${DESTDIR}/boot/defaults/loader.conf ${DESTDIR}/boot/loader.conf`" = "x" ]; then \
|
2000-08-25 19:16:43 +00:00
|
|
|
echo "You must activate /boot/device.hints in loader.conf." ; \
|
|
|
|
exit 1 ; \
|
|
|
|
fi
|
2000-09-07 05:50:07 +00:00
|
|
|
.endif
|
2000-09-05 22:37:46 +00:00
|
|
|
@if [ ! -f ${KERNEL_KO}${.TARGET:S/kernel-install//} ] ; then \
|
1999-11-16 22:02:16 +00:00
|
|
|
echo "You must build a kernel first." ; \
|
1998-06-10 10:57:29 +00:00
|
|
|
exit 1 ; \
|
|
|
|
fi
|
2000-09-07 00:26:33 +00:00
|
|
|
.if exists(${DESTDIR}${KODIR})
|
|
|
|
.if exists(${DESTDIR}${KODIR}.old)
|
2001-04-29 01:53:57 +00:00
|
|
|
@-chflags -R noschg ${DESTDIR}${KODIR}.old
|
2000-09-07 00:26:33 +00:00
|
|
|
-rm -rf ${DESTDIR}${KODIR}.old
|
1998-06-10 10:57:29 +00:00
|
|
|
.endif
|
2000-09-07 00:26:33 +00:00
|
|
|
mv ${DESTDIR}${KODIR} ${DESTDIR}${KODIR}.old
|
2000-09-05 22:37:46 +00:00
|
|
|
.endif
|
2000-09-07 00:26:33 +00:00
|
|
|
mkdir -p ${DESTDIR}${KODIR}
|
2001-04-25 20:56:15 +00:00
|
|
|
install -c -m 555 -o root -g wheel \
|
2000-09-07 00:26:33 +00:00
|
|
|
${KERNEL_KO}${.TARGET:S/kernel-install//} ${DESTDIR}${KODIR}
|
Add {kernel,module}-{depend,clean,cleandepend,tags,install,reinstall}
targets. The {depend,clean,cleandepend,tags,install,reinstall} targets
are composits of the {kernel,module}-* targets (based on NO_MODULES).
2000-05-13 03:15:37 +00:00
|
|
|
|
|
|
|
kernel-reinstall kernel-reinstall.debug:
|
2001-04-29 01:53:57 +00:00
|
|
|
@-chflags -R noschg ${DESTDIR}${KODIR}
|
2001-04-25 20:56:15 +00:00
|
|
|
install -c -m 555 -o root -g wheel \
|
2000-09-07 00:26:33 +00:00
|
|
|
${KERNEL_KO}${.TARGET:S/kernel-reinstall//} ${DESTDIR}${KODIR}
|
Add {kernel,module}-{depend,clean,cleandepend,tags,install,reinstall}
targets. The {depend,clean,cleandepend,tags,install,reinstall} targets
are composits of the {kernel,module}-* targets (based on NO_MODULES).
2000-05-13 03:15:37 +00:00
|
|
|
|
2000-06-17 10:56:15 +00:00
|
|
|
.if !defined(MODULES_WITH_WORLD) && !defined(NO_MODULES) && exists($S/modules)
|
Add {kernel,module}-{depend,clean,cleandepend,tags,install,reinstall}
targets. The {depend,clean,cleandepend,tags,install,reinstall} targets
are composits of the {kernel,module}-* targets (based on NO_MODULES).
2000-05-13 03:15:37 +00:00
|
|
|
all: modules
|
|
|
|
depend: modules-depend
|
|
|
|
clean: modules-clean
|
|
|
|
cleandepend: modules-cleandepend
|
2001-02-27 08:13:32 +00:00
|
|
|
cleandir: modules-cleandir
|
|
|
|
clobber: modules-clobber
|
Add {kernel,module}-{depend,clean,cleandepend,tags,install,reinstall}
targets. The {depend,clean,cleandepend,tags,install,reinstall} targets
are composits of the {kernel,module}-* targets (based on NO_MODULES).
2000-05-13 03:15:37 +00:00
|
|
|
tags: modules-tags
|
2001-01-19 19:43:45 +00:00
|
|
|
install: modules-install
|
|
|
|
install.debug: modules-install.debug
|
|
|
|
reinstall: modules-reinstall
|
|
|
|
reinstall.debug: modules-reinstall.debug
|
Add {kernel,module}-{depend,clean,cleandepend,tags,install,reinstall}
targets. The {depend,clean,cleandepend,tags,install,reinstall} targets
are composits of the {kernel,module}-* targets (based on NO_MODULES).
2000-05-13 03:15:37 +00:00
|
|
|
.endif
|
|
|
|
|
2000-10-03 20:05:36 +00:00
|
|
|
MKMODULESENV= MAKEOBJDIRPREFIX=${.OBJDIR}/modules KMODDIR=${KODIR}
|
2001-04-02 08:52:05 +00:00
|
|
|
.if defined(MODULES_OVERRIDE)
|
|
|
|
MKMODULESENV+= MODULES_OVERRIDE="${MODULES_OVERRIDE}"
|
|
|
|
.endif
|
2000-09-05 22:37:46 +00:00
|
|
|
|
Add {kernel,module}-{depend,clean,cleandepend,tags,install,reinstall}
targets. The {depend,clean,cleandepend,tags,install,reinstall} targets
are composits of the {kernel,module}-* targets (based on NO_MODULES).
2000-05-13 03:15:37 +00:00
|
|
|
modules:
|
2000-12-24 13:29:58 +00:00
|
|
|
@mkdir -p ${.OBJDIR}/modules
|
|
|
|
cd $S/modules ; env ${MKMODULESENV} ${MAKE} obj ; \
|
|
|
|
env ${MKMODULESENV} ${MAKE} all
|
Add {kernel,module}-{depend,clean,cleandepend,tags,install,reinstall}
targets. The {depend,clean,cleandepend,tags,install,reinstall} targets
are composits of the {kernel,module}-* targets (based on NO_MODULES).
2000-05-13 03:15:37 +00:00
|
|
|
|
|
|
|
modules-depend:
|
2000-12-24 13:29:58 +00:00
|
|
|
@mkdir -p ${.OBJDIR}/modules
|
|
|
|
cd $S/modules ; env ${MKMODULESENV} ${MAKE} obj ; \
|
|
|
|
env ${MKMODULESENV} ${MAKE} depend
|
Add {kernel,module}-{depend,clean,cleandepend,tags,install,reinstall}
targets. The {depend,clean,cleandepend,tags,install,reinstall} targets
are composits of the {kernel,module}-* targets (based on NO_MODULES).
2000-05-13 03:15:37 +00:00
|
|
|
|
|
|
|
modules-clean:
|
2000-11-17 21:25:15 +00:00
|
|
|
cd $S/modules ; env ${MKMODULESENV} ${MAKE} clean
|
Add {kernel,module}-{depend,clean,cleandepend,tags,install,reinstall}
targets. The {depend,clean,cleandepend,tags,install,reinstall} targets
are composits of the {kernel,module}-* targets (based on NO_MODULES).
2000-05-13 03:15:37 +00:00
|
|
|
|
|
|
|
modules-cleandepend:
|
2000-11-17 21:25:15 +00:00
|
|
|
cd $S/modules ; env ${MKMODULESENV} ${MAKE} cleandepend
|
2000-09-05 22:37:46 +00:00
|
|
|
|
2001-02-27 08:13:32 +00:00
|
|
|
modules-clobber: modules-clean
|
|
|
|
rm -rf ${MKMODULESENV}
|
|
|
|
|
2000-09-05 22:37:46 +00:00
|
|
|
modules-cleandir:
|
2000-11-17 21:25:15 +00:00
|
|
|
cd $S/modules ; env ${MKMODULESENV} ${MAKE} cleandir
|
Add {kernel,module}-{depend,clean,cleandepend,tags,install,reinstall}
targets. The {depend,clean,cleandepend,tags,install,reinstall} targets
are composits of the {kernel,module}-* targets (based on NO_MODULES).
2000-05-13 03:15:37 +00:00
|
|
|
|
|
|
|
modules-tags:
|
2000-11-17 21:25:15 +00:00
|
|
|
cd $S/modules ; env ${MKMODULESENV} ${MAKE} tags
|
Add {kernel,module}-{depend,clean,cleandepend,tags,install,reinstall}
targets. The {depend,clean,cleandepend,tags,install,reinstall} targets
are composits of the {kernel,module}-* targets (based on NO_MODULES).
2000-05-13 03:15:37 +00:00
|
|
|
|
|
|
|
modules-install modules-install.debug:
|
2000-11-17 21:25:15 +00:00
|
|
|
cd $S/modules ; env ${MKMODULESENV} ${MAKE} install
|
1998-06-10 10:57:29 +00:00
|
|
|
|
Add {kernel,module}-{depend,clean,cleandepend,tags,install,reinstall}
targets. The {depend,clean,cleandepend,tags,install,reinstall} targets
are composits of the {kernel,module}-* targets (based on NO_MODULES).
2000-05-13 03:15:37 +00:00
|
|
|
modules-reinstall modules-reinstall.debug:
|
2000-11-17 21:25:15 +00:00
|
|
|
cd $S/modules ; env ${MKMODULESENV} ${MAKE} install
|
1999-05-08 20:04:39 +00:00
|
|
|
|
1999-11-22 15:39:13 +00:00
|
|
|
config.o:
|
|
|
|
${NORMAL_C}
|
|
|
|
|
1998-06-10 10:57:29 +00:00
|
|
|
param.c: $S/conf/param.c
|
|
|
|
-rm -f param.c
|
|
|
|
cp $S/conf/param.c .
|
|
|
|
|
1999-11-22 15:39:13 +00:00
|
|
|
param.o:
|
|
|
|
${NORMAL_C}
|
1998-06-10 10:57:29 +00:00
|
|
|
|
1999-11-22 15:39:13 +00:00
|
|
|
vers.c: $S/conf/newvers.sh $S/sys/param.h ${SYSTEM_DEP}
|
1998-06-10 10:57:29 +00:00
|
|
|
sh $S/conf/newvers.sh ${KERN_IDENT} ${IDENT}
|
|
|
|
|
1999-11-22 15:39:13 +00:00
|
|
|
# XXX strictly, everything depends on Makefile because changes to ${PROF}
|
|
|
|
# only appear there, but we don't handle that.
|
|
|
|
vers.o:
|
|
|
|
${NORMAL_C}
|
|
|
|
|
Borrow phk's axe and apply the next stage of config(8)'s evolution.
Use Warner Losh's "hint" driver to decode ascii strings to fill the
resource table at boot time.
config(8) no longer generates an ioconf.c table - ie: the configuration
no longer has to be compiled into the kernel. You can reconfigure your
isa devices with the likes of this at loader(8) time:
set hint.ed.0.port=0x320
userconfig will be rewritten to use this style interface one day and will
move to /boot/userconfig.4th or something like that.
It is still possible to statically compile in a set of hints into a kernel
if you do not wish to use loader(8). See the "hints" directive in GENERIC
as an example.
All device wiring has been moved out of config(8). There is a set of
helper scripts (see i386/conf/gethints.pl, and the same for alpha and pc98)
that extract the 'at isa? port foo irq bar' from the old files and produces
a hints file. If you install this file as /boot/device.hints (and update
/boot/defaults/loader.conf - You can do a build/install in sys/boot) then
loader will load it automatically for you. You can also compile in the
hints directly with: hints "device.hints" as well.
There are a few things that I'm not too happy with yet. Under this scheme,
things like LINT would no longer be useful as "documentation" of settings.
I have renamed this file to 'NOTES' and stored the example hints strings
in it. However... this is not something that config(8) understands, so
there is a script that extracts the build-specific data from the
documentation file (NOTES) to produce a LINT that can be config'ed and
built. A stack of man4 pages will need updating. :-/
Also, since there is no longer a difference between 'device' and
'pseudo-device' I collapsed the two together, and the resulting 'device'
takes a 'number of units' for devices that still have it statically
allocated. eg: 'device fe 4' will compile the fe driver with NFE set
to 4. You can then set hints for 4 units (0 - 3). Also note that
'device fe0' will be interpreted as "zero units of 'fe'" which would be
bad, so there is a config warning for this. This is only needed for
old drivers that still have static limits on numbers of units.
All the statically limited drivers that I could find were marked.
Please exercise EXTREME CAUTION when transitioning!
Moral support by: phk, msmith, dfr, asmodai, imp, and others
2000-06-13 22:28:50 +00:00
|
|
|
hints.o: hints.c
|
|
|
|
${NORMAL_C}
|
|
|
|
|
1999-12-17 22:07:43 +00:00
|
|
|
vnode_if.c: $S/kern/vnode_if.pl $S/kern/vnode_if.src
|
|
|
|
perl5 $S/kern/vnode_if.pl -c $S/kern/vnode_if.src
|
1999-12-12 16:43:05 +00:00
|
|
|
|
1999-12-17 22:07:43 +00:00
|
|
|
vnode_if.h: $S/kern/vnode_if.pl $S/kern/vnode_if.src
|
|
|
|
perl5 $S/kern/vnode_if.pl -h $S/kern/vnode_if.src
|
1998-06-10 10:57:29 +00:00
|
|
|
|
1999-11-22 15:39:13 +00:00
|
|
|
vnode_if.o:
|
|
|
|
${NORMAL_C}
|
|
|
|
|
1999-02-02 18:34:23 +00:00
|
|
|
.if exists($S/../share/mk)
|
|
|
|
.include "$S/../share/mk/bsd.kern.mk"
|
|
|
|
.else
|
1998-06-10 10:57:29 +00:00
|
|
|
.include <bsd.kern.mk>
|
1999-02-02 18:34:23 +00:00
|
|
|
.endif
|
1998-06-10 10:57:29 +00:00
|
|
|
|
|
|
|
%RULES
|
|
|
|
|
|
|
|
# DO NOT DELETE THIS LINE -- make depend uses it
|