billc
195a593eae
Fix thinko to make MKINFO=no work again. Closes PRs 7342 and 7411.
1999-04-22 01:06:42 +00:00
mycroft
654297170f
Use -Tascii for pre-generated man pages, to avoid some nroff character set
...
magick.
1999-04-16 18:56:19 +00:00
fair
e1134b1863
Patched per PR 7283; this causes shared libraries which depend on
...
other shared libraries to load against the ones just built when
DESTDIR is set (i.e. -L${DESTDIR}${LIBDIR} ), rather than what's
installed in /usr/lib (previous behavior definitely violated the
Principle of Least Astonishment!).
1999-03-30 09:30:43 +00:00
mycroft
3064c4ddcd
alpha seems to work with -O2...
1999-03-10 14:06:14 +00:00
ross
88fbb254d4
If it exists, include machine/Makefile.inc
1999-03-10 06:34:19 +00:00
simonb
303e8a33d5
Change CFLAGS to AFLAGS for mkdep of .S/.s files. Fixes "make depend"
...
on pmax kernels (and doesn't break "make depend" on entire tree).
1999-02-24 22:04:15 +00:00
drochner
cf3c9d73cd
add missing parts of the "mips"->"mipse?" transition
1999-02-24 14:42:36 +00:00
christos
7054064487
Add sparc/elf bits.
1999-02-14 19:12:09 +00:00
christos
26bef09099
Don't attempt to build catpages when MKMAN == no
1999-02-13 16:34:39 +00:00
lukem
6077e7c1f5
don't bother supporting NOINFO (since it's a new thing); just support MKINFO=no
...
fix description of MKSHARE=no
1999-02-13 03:04:09 +00:00
lukem
dcab0210a0
convert from NOxxx= to MKxxx=no.
...
include <bsd.own.mk> if testing a MKxxx variable.
1999-02-13 02:54:17 +00:00
tv
899feeac30
Add doc for bsd.info.mk, and move the description of MKLINKLIB to the
...
bsd.lib.mk section (it should NEVER be set by mk.conf).
1999-02-12 15:10:22 +00:00
tv
f727f277a7
Add {MK,NO}INFO, and use that to control generation/installation of Info
...
documentation. MKINFO=no is implied by MKSHARE=no.
1999-02-12 15:01:08 +00:00
lukem
41510f9a2b
for MKSHARE=no, set MKDOC=no MKMAN=no MKNLS=no, and for MKMAN=no, set
...
MKCATPAGES=no. this simplifies various tests.
1999-02-12 12:38:44 +00:00
lukem
13814c4ffb
pull in bsd.own.mk for MKOBJ
1999-02-12 04:13:26 +00:00
lukem
497d11782a
* Add support for MKDOC MKLINKLIB MKLINT MKMAN MKNLS MKOBJ MKPIC MKPICINSTALL
...
MKPROFILE MKSHARE, which default to `yes' unless an equivalent NOxxx
variable is defined.
* Add MKCATPAGES, which if "no" prevents catpages from being built or installed
Users should use "MKxxx=no" instead of "NOxxx=" in /etc/mk.conf, because
this allows easy override on the make(1) command line (e.g 'make MKSHARE=yes'
to override MKSHARE=no in /etc/mk.conf).
1999-02-12 01:10:06 +00:00
tv
3d13884e75
I wish they'd settle on a file extension. Build Info files for any of
...
.txi, .texi, or .texinfo.
1999-02-11 16:50:46 +00:00
tv
8baaaf2b4d
Clean on "cleandir" and "distclean", not "realclean".
...
XXX those clean targets should be unified and depend on a common name,
including that "distclean" should invoke "realclean".
1999-02-11 16:09:21 +00:00
tv
38928fc46a
Add an INFOFLAGS that contains -I's to pass to makeinfo.
1999-02-11 15:59:07 +00:00
tv
d73e722243
makeinfo produces its own `making...' message, so make the command itself
...
silent.
1999-02-11 15:31:44 +00:00
tv
4b894ef57b
Create <bsd.info.mk> for Info documentation, and avoid the nasty install
...
stuff duplication by expressing it in terms of <bsd.files.mk>. Allow for
multiple inclusion of <bsd.files.mk> by clearing ${FILES} at the end, and
using FILES+= rather than FILES= in <bsd.info.mk>.
1999-02-11 13:25:42 +00:00
tv
1d11758833
Remove `dirname: all-dirname' compatibility hack. It's been long supposed
...
to go away, and even commented as such....
1999-02-11 05:01:39 +00:00
tv
1fd585e551
Remove GNU_ARCH.mips=mipsel, and produce an error if MACHINE_ARCH is only
...
"mips".
1999-02-10 21:11:47 +00:00
tv
bd8a69f172
libbfd_pic.a is no longer installed; remove ${LIBBFD} define.
1999-02-10 20:55:56 +00:00
tv
158083e27d
Use :Q to quote arguments to "echo" so that quote marks don't fall out of
...
the printed mkdep command.
1999-02-07 17:29:40 +00:00
hubertf
276269973c
s/bsd.port.mk/bsd.own.mk/
1999-02-07 17:21:09 +00:00
simonb
6a165c11d8
Back out previous backout of -O2 in mips. Bug in strtod.c fixed via
...
Niklas Hallqvist.
1999-02-06 02:07:55 +00:00
simonb
f88a59dce9
_Don't_ use -O2 on mips, libc/stdlib/strtod.c breaks
1999-02-05 13:50:09 +00:00
christos
f16578a952
PR/2936: Brian C. Grayson: Avoid truncating precious files when installing
...
and the filesystem is full. Added ${RENAME} flag to install, which when set
to -r installs on a temporary file and then renames to the final destination.
${RENAME} is currently set to nothing in bsd.own.mk, but one can turn it
on in /etc/mk.conf.
1999-02-04 11:58:30 +00:00
tv
e2e1136b79
Our make can't actually turn off implicit rules per-target, and the
...
"depend:" rule had no actual commands to execute, so it used the implicit
".c:" rule in gas.new (which has a depend.c). Add a command here -- just
"true" -- that prevents use of implicit rules. This may need a new
.-option in make(1) to be done Right.
1999-02-03 21:08:05 +00:00
mrg
b6b3f824d3
NOGCCERROR disables -Werror.
1999-01-31 09:17:20 +00:00
mycroft
af6912b12f
Use -O2 on arm32.
1999-01-21 09:44:19 +00:00
christos
73a72701ab
Add -F to LINTFLAGS so that the full pathname is printed.
1999-01-18 20:22:54 +00:00
castor
45a22daf10
allow generated kernel includes and support mips pubassym.cf mechanism
1999-01-15 10:57:36 +00:00
simonb
73b06e25d1
Use -O2 on mips.
1999-01-12 05:06:17 +00:00
tv
94eed8e6d2
GC conditional egcs cruft.
1998-12-31 19:58:59 +00:00
castor
c57180f21e
Change make to ${MAKE} to allow standard make to be overridden.
1998-12-31 15:28:52 +00:00
itohy
172852517b
Switch x68k port to UVM by default.
...
Mach VM and even old contig and non-contig codes are still alive.
1998-12-23 23:01:44 +00:00
mrg
9ec7c3c814
move sun3 to UVM by default. only pica/arc & x68k left.
1998-12-23 06:00:03 +00:00
thorpej
269d52483b
Use -O2 on m68k.
1998-12-12 20:48:53 +00:00
thorpej
14b57317d6
Just switch all m68k to EGCS.
1998-12-12 20:48:23 +00:00
is
522ca75f7f
Switch Amiga port to egcs.
1998-12-12 20:20:42 +00:00
thorpej
adab608611
When installing a shared library, run /sbin/ldconfig -m ${LIBDIR} if
...
DESTDIR is not set and the object format is a.out.
1998-12-02 22:52:21 +00:00
tsubai
50a875f651
Use egcs by default on powerpc.
1998-12-02 14:12:23 +00:00
erh
36f7c92000
Don't do the version check if we can't find the script.
1998-11-30 23:34:44 +00:00
eeh
b2f5408385
Fix up GNU_ARCH for sparc64.
1998-11-28 22:46:16 +00:00
mycroft
0a7241355c
Use -O2 on SPARC.
1998-11-26 23:06:09 +00:00
mrg
3b86991953
note that the sparc64 does not yet do pic or profile libraries.
1998-11-25 04:04:13 +00:00
tsubai
49837f8763
Remove NOPIC= on powerpc.
1998-11-24 15:24:53 +00:00
mycroft
8ee4fce4a0
Use egcs on sparc.
1998-11-22 13:51:04 +00:00