Home | History | Annotate | Download | only in conf
History log of /src/sys/arch/next68k/conf/Makefile.next68k
RevisionDateAuthorComments
 1.32  22-Sep-2018  rin - Determine KERN_AS automatically depending on whether OPT_MODULAR is
set or not, in the same way as libcompat.

- Specify OPT_MODULAR in the port Makefile instead of KERN_AS.

Now, KERN_AS=library is used for kernels without module(7) for all ports.

OK christos
 1.31  06-Sep-2015  uebayasi branches: 1.31.16; 1.31.18;
Declare dependency on fpsp.o via newly introduced ${MD_LIBS} instead of
${MD_OBJS}.

${MD_OBJS} should be used only for objects that must be linked first (i.e.,
start code). Objects have to be compiled following common compile rules,
and have to be generated into common places (i.e., top of kernel build
directory).

${MD_LIBS} defines libraries that are built by separate makefiles, under
separate directories. `Makefile.kern.inc' doesn't know intermediate library
objects.
 1.30  21-Jan-2011  joerg branches: 1.30.14; 1.30.32;
Switch remaining platforms to modern CPP for assembler.
 1.29  14-Feb-2008  joerg branches: 1.29.32; 1.29.38; 1.29.40;
Add missing assym.h dependencies.
 1.28  11-Dec-2005  christos branches: 1.28.50; 1.28.56;
merge ktrace-lwp.
 1.27  31-May-2005  christos branches: 1.27.2;
s/GENASSYM/GENASSYM_CONF/ so we can use "GENASSYM" as the program name.
 1.26  04-Jun-2004  thorpej Add the %MAKEOPTIONSAPPEND token at the end of the file, after the
common Makefile.kern.inc has been included.
 1.25  26-Nov-2002  thorpej branches: 1.25.6; 1.25.10;
The traditional C preprocessor is fixed in GCC 3.3 now, so no need
to skip -traditional-cpp for HAVE_GCC3.
 1.24  04-Jun-2002  thorpej Don't use -traditional-cpp if HAVE_GCC3.
 1.23  09-Dec-2001  atatat branches: 1.23.8;
Roll the rest of the ports over to the new MI kernel build machinery.
Any problems reported by testers have been fixed, and massive
cross-compiling of kernels has shown that any problems that remain
with actually building kernels are not related to this.
 1.22  20-Nov-2001  lukem cleanup:
options SPACE TAB
makeoptions TAB
psuedo-device TAB
remove trailing whitespace
replace multiple spaces -> tabs
options "FOO" -> options FOO
options "FOO=bar" -> options FOO=bar
options "FOO=\"bar\"" -> options FOO="\"bar\""
 1.21  26-Oct-2001  jmc branches: 1.21.2;
Change defaults for kernel compiles. Default all to USETOOLS?=no and have
the etc Makefile override that by putting USETOOLS into $.MAKEOVERRIDES
This way the default for kernel compiles is still to use the installed
toolchain instead of depending on $TOOLDIR. $TOOLDIR can be used by
simply adding USETOOLS=yes to the command line as usual.

Adjust each ports template to set the default no setting and also pull in
bsd.own.mk if they weren't already to ensure they'll build correctly
with the new toolchain setup.
 1.20  23-Oct-2001  thorpej branches: 1.20.2;
Set MACHINE_ARCH explicitly in Makefiles for which it is constant.
Also, since config(8) now explcitly sets MACHINE, there is no need
to do it here in the Makefile.
 1.19  29-May-2001  mrg branches: 1.19.2;
define _KERNEL_OPT as well as _KERNEL. we will use this in the future to
get kernel "opt_foo.h" headers, rather than _KERNEL && !_LKM.
 1.18  13-May-2001  chs turn on printf format-string checking and -Werror. fix all warnings.
 1.17  17-Dec-2000  jdolecek branches: 1.17.2;
delete obsolete comment
 1.16  09-May-2000  hubertf Add "install" target, so "make install" after building the kernel
does something useful. The target can be redefined by putting a
install-kernel-${MACHINE_NAME} target that fits your needs into
/etc/mk.conf.
 1.15  09-May-2000  thorpej HAVE_GCC28 -> HAVE_EGCS, and make it match gcc 2.9 as well. Also,
make the use of -Wno-uninitialized explicit, don't rely on a compiler
hack to do it for us.
 1.14  01-Feb-2000  tsutsui Revert STRIPPROG -> STRIP
 1.13  24-Jan-2000  tron Add "dependall" target for comfort.
 1.12  19-Jan-2000  tsutsui STRIP -> STRIPPROG
 1.11  19-Jan-2000  tsutsui Change STRIPFLAGS=-g for cross-toolchains.
 1.10  08-Jan-2000  dbj resync with with hp300 port
 1.9  26-Jul-1999  cgd branches: 1.9.2;
be more efficient when doing the SYSTEM_LD_TAIL for -g kernels: don't
copy them just to strip them, use strip -o.
 1.8  09-Jul-1999  mrg clean up a bit after jason :)

- fix emitrules() like emitfiles() to deal with the prefix (otherwise it
would attempt to find the file in the normal base for the NORMAL_C rule).
- add emitincludes() which adds include directives for each prefix to the
$INCLUDES variable in the makefile.
- add %INCLUDES to each Makefile.arch to deal with the above.

this makes "prefix" actually work in a usable manner, and now i can move
on to fixing compiler warnings (errors) in the ESP code. :)
 1.7  15-Jan-1999  thorpej branches: 1.7.4;
Don't define "mc68020". Nothing uses it.
 1.6  08-Jan-1999  augustss Add -Wpointer-arith warning since `void *' arithmetic is not ANSI C.
 1.5  16-Nov-1998  dbj Moved UVM define from GENERIC to std.next68k
Added -Wno-main to warnflags, if compiler supports it.
 1.4  15-Oct-1998  drochner change handling of libkern:
-sys/lib/libkern builds as library per default (as it was documented all
the time)
-ports able to LKM set "KERN_AS=obj" explicitely in their Makefiles
(for now; should depend on actual "option LKM" or -better- functions
included for LKM use should be pulled in by a stub)
-always link libcompat before libkern - libkern stuff can be referred to
by libcompat, but not the other way
 1.3  05-Sep-1998  lukem distclean is a synonym for cleandir
 1.2  05-Jul-1998  dbj Started the esp scsi driver.
Fixed bus_space_handle_t in nextdma device.
Fixed scsi interrupt define.
 1.1  09-Jun-1998  dbj branches: 1.1.1;
Initial revision
 1.1.1.1  09-Jun-1998  dbj Initial import of NetBSD/next68k.
 1.7.4.1  02-Aug-1999  thorpej Update from trunk.
 1.9.2.2  05-Jan-2001  bouyer Sync with HEAD
 1.9.2.1  20-Nov-2000  bouyer Update thorpej_scsipi to -current as of a month ago
A i386 GENERIC kernel compiles without the siop, ahc and bha drivers
(will be updated later). i386 IDE/ATAPI and ncr work, as well as
sparc/esp_sbus. alpha should work as well (untested yet).
siop, ahc and bha will be updated once I've updated the branch to current
-current, as well as machine-dependant code.
 1.17.2.1  21-Jun-2001  nathanw Catch up to -current.
 1.19.2.2  23-Jun-2002  jdolecek catch up with -current on kqueue branch
 1.19.2.1  10-Jan-2002  thorpej Sync kqueue branch with -current.
 1.20.2.1  12-Nov-2001  thorpej Sync the thorpej-mips-cache branch with -current.
 1.21.2.4  11-Dec-2002  thorpej Sync with HEAD.
 1.21.2.3  20-Jun-2002  nathanw Catch up to -current.
 1.21.2.2  08-Jan-2002  nathanw Catch up to -current.
 1.21.2.1  26-Oct-2001  nathanw file Makefile.next68k was added on branch nathanw_sa on 2002-01-08 00:26:57 +0000
 1.23.8.1  15-Jul-2002  gehenna catch up with -current.
 1.25.10.1  06-Feb-2005  jmc Pull up patch (requested by martti in ticket #1086)
Move ipf to sys/dist/ipf and sync w. trunk
 1.25.6.4  10-Nov-2005  skrll Sync with HEAD. Here we go again...
 1.25.6.3  21-Sep-2004  skrll Fix the sync with head I botched.
 1.25.6.2  18-Sep-2004  skrll Sync with HEAD.
 1.25.6.1  03-Aug-2004  skrll Sync with HEAD
 1.27.2.1  27-Feb-2008  yamt sync with head.
 1.28.56.1  18-Feb-2008  mjf Sync with HEAD.
 1.28.50.1  23-Mar-2008  matt sync with HEAD
 1.29.40.1  08-Feb-2011  bouyer Sync with HEAD
 1.29.38.1  06-Jun-2011  jruoho Sync with HEAD.
 1.29.32.1  05-Mar-2011  rmind sync with head
 1.30.32.1  22-Sep-2015  skrll Sync with HEAD
 1.30.14.1  03-Dec-2017  jdolecek update from HEAD
 1.31.18.1  10-Jun-2019  christos Sync with HEAD
 1.31.16.1  30-Sep-2018  pgoyette Ssync with HEAD

RSS XML Feed