Home | History | Annotate | Download | only in conf
History log of /src/sys/arch/atari/conf/Makefile.atari
RevisionDateAuthorComments
 1.78  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.77  25-Feb-2018  mrg branches: 1.77.2; 1.77.4;
add a special rule to build m68k/fpu.c to avoid passing -msoft-float.
fixes GCC 6 kernel builds that use this file.
 1.76  06-Sep-2015  uebayasi 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.75  21-Jan-2011  joerg branches: 1.75.14; 1.75.32;
Switch remaining platforms to modern CPP for assembler.
 1.74  19-Oct-2009  tsutsui branches: 1.74.4; 1.74.6; 1.74.8;
Switch the atari port to the common m68k/m68k/pmap_motorola.c, at last.
 1.73  25-Jan-2009  abs Abstract out setting of '-m680X0' based on -DM68020, -DM68030,
-DM68040, and -DM68060 into sys/arch/m68k/Makefile.cmachflags and
include from both atari and amiga. Other m68k ports which build
kernels that support multiple CPU types can also switch across to
this.
 1.72  25-Jan-2008  joerg branches: 1.72.10; 1.72.18;
Add some assym.h dependencies.
 1.71  11-Dec-2005  christos branches: 1.71.50; 1.71.56;
merge ktrace-lwp.
 1.70  31-May-2005  christos branches: 1.70.2;
s/GENASSYM/GENASSYM_CONF/ so we can use "GENASSYM" as the program name.
 1.69  04-Jun-2004  thorpej Add the %MAKEOPTIONSAPPEND token at the end of the file, after the
common Makefile.kern.inc has been included.
 1.68  26-Nov-2002  thorpej branches: 1.68.6; 1.68.10;
The traditional C preprocessor is fixed in GCC 3.3 now, so no need
to skip -traditional-cpp for HAVE_GCC3.
 1.67  04-Jun-2002  thorpej Don't use -traditional-cpp if HAVE_GCC3.
 1.66  09-Dec-2001  atatat branches: 1.66.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.65  20-Nov-2001  lukem regenerate for whitespace cleanup
 1.64  26-Oct-2001  jmc branches: 1.64.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.63  23-Oct-2001  thorpej branches: 1.63.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.62  29-May-2001  mrg branches: 1.62.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.61  17-Dec-2000  jdolecek branches: 1.61.2;
delete obsolete comment
 1.60  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.59  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.58  01-Feb-2000  tsutsui Revert STRIPPROG -> STRIP
 1.57  24-Jan-2000  tron Add "dependall" target for comfort.
 1.56  19-Jan-2000  tsutsui STRIP -> STRIPPROG
 1.55  19-Jan-2000  tsutsui Change STRIPFLAGS=-g for cross-toolchains.
 1.54  26-Jul-1999  cgd branches: 1.54.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.53  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.52  06-May-1999  leo Remove dependency of vfs_conf.o, this file is no more. From Jonathan Stone.
 1.51  15-Jan-1999  thorpej branches: 1.51.4;
Some minor, mostly costmetic, changes to CPPFLAGS/CFLAGS.
 1.50  15-Jan-1999  thorpej Don't define "mc68020". Nothing uses it.
 1.49  08-Jan-1999  augustss Add -Wpointer-arith warning since `void *' arithmetic is not ANSI C.
 1.48  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.47  05-Sep-1998  lukem distclean is a synonym for cleandir
 1.46  31-May-1998  thorpej Specify a non-profiling C rule.
 1.45  24-May-1998  is Back out the defopt for M680?0. As pointed out to me, this breaks ports which
dont use the M680?0 the way Amiga, Atari, Mac68k, and X68k do. I must have
missed this in the past discussion about this project.
 1.44  23-May-1998  is Move M680[2346]0 to opt_m68kcpu.h.
XXX Some explicit dependencies could be removed now from the individual
arch/$ARCH/conf/Makefile.$ARCH files, but this is still to be done.
 1.43  12-Apr-1998  tv Add -Wno-main conditional on compiler being gcc 2.8 or egcs. (This adds
a HAVE_GCC28 check-variable that can now be used to add other gcc-2.8
flags in cases where they may be useful, or to remove gcc 2.7.2 "bug
workaround" flags.)
 1.42  01-Jan-1998  mikel use ${SIZE} instead of "size" (somehow this one got missed)
 1.41  12-Nov-1997  thorpej Make sure CPP, AR, AS, and RANLIB are defined.
 1.40  12-Nov-1997  thorpej Define LORDER, NM, and TSORT here, like we do the rest of the tools.
 1.39  09-Oct-1997  is branches: 1.39.2;
Help crosscompiling, by as -> $(AS). Define AS?= as in the calling
Makefile.$(ARCH)es. Will hopefully fix the (remaining) part or pr4010.
 1.38  07-Oct-1997  is Oops, forgot to commit this when doing the recent 060SP Makefile change.
 1.37  03-Oct-1997  lukem define SIZE?=size, and use ${SIZE} instead of size. makes cross
compilation easier
 1.36  30-Sep-1997  christos PR/4162: Chris Jones: make cleandir does not work properly; it does not
remove the object files and the .depend file in the kernel build directory.
 1.35  12-Sep-1997  mycroft Nuke Locore.c. It's way too out of date to be useful at this point.
 1.34  12-Jul-1997  leo branches: 1.34.2;
Generate assym.h dependencies when making 'depend'.
 1.33  04-Jun-1997  leo Add the 68060 Software Support Package.
 1.32  02-Jun-1997  leo Be a bit more robust when dealing with genassym failures (From mycroft).
 1.31  17-Mar-1997  leo Revert to new method of generating assym.h.
 1.30  14-Mar-1997  mycroft Define the `cleankernel' target consistently with other ports.
 1.29  16-Feb-1997  leo :: -> :
 1.28  04-Feb-1997  perry branches: 1.28.4;
Nuke some options GENERIC residue.
 1.27  04-Feb-1997  perry Nuke some GENERIC residue.
 1.26  14-Dec-1996  leo Fix type (COPT -> COPTS).
 1.25  01-Dec-1996  jonathan * Replace explicit -O2 in CFLAGS with COPTS macro. Default COPTS?= -O2.
Lets users over-ride with makeoptions COPTS="..." in kernel config files.

Leave `mandatory' flags (like -msoft-float which on m68k enforces no
FP in kernel) in CFLAGS.
 1.24  16-Oct-1996  leo Add '-Wall -Wstrict-prototypes -Wmissing-prototypes' to CFLAGS.
 1.23  09-Sep-1996  mycroft Move strip(1) flags into a separate variable, so that $STRIP can
be passed to subordinate make(1)s. Remove $TOUCH. Add HOSTED_CC,
HOSTED_CPPFLAGS, and HOSTED_CFLAGS, and use them when depending genassym.
 1.22  31-Aug-1996  mycroft Wrap the default definition of `S' in `.ifndef'.
 1.21  12-Aug-1996  mycroft Put into . Remove hooks for `config-dependent' and
`device-driver' flags.
 1.20  10-Aug-1996  mycroft * Add a HOSTED_C_C variable, which strips `-p', `-pg', and
`-nostdinc', and use it when building genassym.
* Use `-nostdinc' just to be sure we're self-contained.
 1.19  10-Aug-1996  mycroft * Define CWARNFLAGS and MKDEP in some moderately consistent fashion.
* Make S expand to an absolute path at compile time.
* Use `-S' rather than `-x' to remove debugging symbols.
* Garbage collect unused variables.
* Reverse a handful of port-specific changes that do not correspond to
the common build model and are not needed.
 1.18  18-Jun-1996  leo Use -S rather than -x for "normal" link flags.
 1.17  11-May-1996  mycroft branches: 1.17.4;
Make `make depend' work for libraries.
 1.16  29-Feb-1996  cgd Do not build vnode_if.[ch] for each kernel. Build them once, like the
various syscall sources/headers, and just compile them. From PR 2142, OK'd
by mycroft.
 1.15  26-Feb-1996  mycroft Define build programs with `?=', so they can be overridden with `makeoptions'.
 1.14  09-Feb-1996  mycroft Fix mkdep problems due to missing flags.
 1.13  03-Feb-1996  mycroft Use `-traditional-cpp' when building .s and .S files.
 1.12  02-Feb-1996  mycroft Clone these, and fix many bugs.
 1.11  02-Feb-1996  mycroft assym.s -> assym.h
(Some ports did this already.)
 1.10  01-Feb-1996  mycroft LOCORE -> _LOCORE
 1.9  14-Jan-1996  thorpej Remove vnode_if.[ch] during a "make clean", per PR#536 from
Dan Carosone <danielce@ee.mu.oz.au>.
 1.8  30-Nov-1995  jtc merge in changes from 1.1 release branch
 1.7  23-Sep-1995  leo branches: 1.7.2;
Use -msoft-float as suggested by Gordon Ross.
 1.6  19-Sep-1995  thorpej Compile the kernel with -Werror and -fno-builtin.
 1.5  11-Jul-1995  leo Use -O2
 1.4  24-Jun-1995  christos Makefile.`arch`: - Add -lcompat
- Change clean: target to be a double dep one,
so libraries can use the clean target too
- Add genassym to the clean targets
 1.3  16-May-1995  jtc Removing -DKERNEL, transition to _KERNEL has been completed
 1.2  28-Mar-1995  leo Add -D_KERNEL to preprocessor flags
 1.1  26-Mar-1995  leo branches: 1.1.1;
Initial revision
 1.1.1.1  26-Mar-1995  leo NetBSD/Atari, port by Leo Weppelman.
 1.7.2.1  22-Oct-1995  leo Remove -fno-builtin
 1.17.4.1  18-Jun-1996  leo Pull up from trunk.
 1.28.4.1  12-Mar-1997  is Merge in Changes from The Trunk.
 1.34.2.2  14-Oct-1997  thorpej Update marc-pcmcia branch from trunk.
 1.34.2.1  16-Sep-1997  thorpej Update marc-pcmcia branch from trunk.
 1.39.2.1  12-Nov-1997  thorpej Pull up "make sure tools are defined" changes from trunk.
 1.51.4.2  02-Aug-1999  thorpej Update from trunk.
 1.51.4.1  21-Jun-1999  thorpej Sync w/ -current.
 1.54.2.2  05-Jan-2001  bouyer Sync with HEAD
 1.54.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.61.2.1  21-Jun-2001  nathanw Catch up to -current.
 1.62.2.2  23-Jun-2002  jdolecek catch up with -current on kqueue branch
 1.62.2.1  10-Jan-2002  thorpej Sync kqueue branch with -current.
 1.63.2.1  12-Nov-2001  thorpej Sync the thorpej-mips-cache branch with -current.
 1.64.2.4  11-Dec-2002  thorpej Sync with HEAD.
 1.64.2.3  20-Jun-2002  nathanw Catch up to -current.
 1.64.2.2  08-Jan-2002  nathanw Catch up to -current.
 1.64.2.1  26-Oct-2001  nathanw file Makefile.atari was added on branch nathanw_sa on 2002-01-08 00:23:35 +0000
 1.66.8.1  14-Jul-2002  gehenna catch up with -current.
 1.68.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.68.6.4  10-Nov-2005  skrll Sync with HEAD. Here we go again...
 1.68.6.3  21-Sep-2004  skrll Fix the sync with head I botched.
 1.68.6.2  18-Sep-2004  skrll Sync with HEAD.
 1.68.6.1  03-Aug-2004  skrll Sync with HEAD
 1.70.2.1  04-Feb-2008  yamt sync with head.
 1.71.56.1  18-Feb-2008  mjf Sync with HEAD.
 1.71.50.1  23-Mar-2008  matt sync with HEAD
 1.72.18.1  03-Mar-2009  skrll Sync with HEAD.
 1.72.10.2  11-Mar-2010  yamt sync with head
 1.72.10.1  04-May-2009  yamt sync with head.
 1.74.8.1  08-Feb-2011  bouyer Sync with HEAD
 1.74.6.1  06-Jun-2011  jruoho Sync with HEAD.
 1.74.4.1  05-Mar-2011  rmind sync with head
 1.75.32.1  22-Sep-2015  skrll Sync with HEAD
 1.75.14.1  03-Dec-2017  jdolecek update from HEAD
 1.77.4.1  10-Jun-2019  christos Sync with HEAD
 1.77.2.1  30-Sep-2018  pgoyette Ssync with HEAD

RSS XML Feed