cgd
d46cdace76
add SHLIB_LDSTARTFILE and SHLIB_LDENDFILE variables for a.out shared lib
...
architectures, for consistency. (For a.out shared libs, they're empty.)
Make the shared library target depend on them.
1997-03-23 00:52:20 +00:00
perry
1d624f4f7e
Fix SYMLINKS not to include DESTDIR in the link itself
1997-03-22 22:33:53 +00:00
jonathan
d012191d6d
Use table-driven rules for linking shared libraries on a.out or ELF systems.
1997-03-15 11:35:04 +00:00
cgd
b7e0994151
pull crtbeginS.o and crtendS.o in from DESTDIR
1997-03-14 00:52:50 +00:00
perry
de40e6afd4
add SYMLINKS, by analogy to LINKS. Vetted by Christos.
1997-03-13 02:45:58 +00:00
cgd
f8c02ac2a7
clean up Alpha (ELF) shared library build and install rules. The latter
...
are now more like what's "normal" for ELF.
1997-02-17 19:24:47 +00:00
mikel
ffba261ec0
add support for COPTS, as in bsd.prog.mk
1997-01-28 03:38:40 +00:00
cgd
1d20ab5d2e
if 'clean' is not already defined, rather than simply defining it with
...
a bunch of rules, define a clean{kmod,lib,prog} target with the rules,
and have both clean and cleandir depend on that. That eliminates a bug
where 'cleandir' in a directory which included e.g. bsd.prog.mk but which
also had subdirs would 'make clean' all the subdirs and then 'make cleandir'
all ofthe subdirs. It also allows Makefiles to add more dependencies
to 'clean' after inclusion of the make template.
If 'clean' is already defined, the behaviour is the same as it used to be.
1997-01-22 01:34:11 +00:00
christos
398a0a033b
Don't use @echo "${command}" to echo commands, because if ${command} contains
...
double quotes we generate shell syntax errors. Use @echo ${command:Q} instead
which properly quotes shell metacharacters.
1996-12-29 19:14:32 +00:00
cgd
6cd7e38583
change the afterdepend target so that its sed script adds <filename>.ln
...
for each <filename>.o as an object file which has the given dependencies
(in addition to <filename>.po and <filename>.so, which were already there).
1996-12-20 16:36:56 +00:00
cgd
2dbbba03f0
remove outdated XXX comment (mine)
1996-12-19 07:51:59 +00:00
cgd
cbff9abf27
undo (or actually, do differently) that last: On the Alpha, build shared
...
libraries with LD, but add /usr/lib/crtbegin.o and /usr/lib/crtend.o
before and after the rest of the stuff being linked. This is a losing
situation all-around: for correct 'DESTDIR' builds, it should be including
them from ${DESTDIR}/usr/lib. However, since those objects should be
included for all shared libraries, including them from ${DESTDIR} won't work,
because they won't be installed by normal builds by the time they need to
be used.
1996-12-17 23:14:23 +00:00
cgd
47b997f2e0
build Alpha shared libraries with ${CC} rather than ${LD}, because cc
...
understands how to do the c run-time startup magic necessary for shared
libraries and ld doesn't.
1996-12-17 21:05:40 +00:00
jtc
43a3714539
Define GPROF when assembling *.S files
1996-11-30 02:18:54 +00:00
mikel
4620721b06
Remove extra ".o"s; fixes PR misc/2883.
1996-11-05 05:40:28 +00:00
thorpej
416caa144c
Use ${INSTALL} rather than "install".
...
From Simon J. Gerraty <sjg@zen.void.oz.au>, PR #1458 .
1996-10-18 02:34:42 +00:00
cgd
a23bd4576c
if ${MACHINE_ARCH} is "alpha" build shared libs with the 'normal' GNU
...
linker's command line args, rather than the NetBSD linker's command
line args. This is a hack, and should go away in favor of something
more general when that something is developed. In the mean time, it
might be appropriate for the various mips ports to do the same thing.
1996-10-13 20:39:36 +00:00
abrown
795306043d
Add missing quote (") in @echo line of .S.o rule, to prevent sh from
...
getting confused in certain cases.
1996-09-23 20:23:05 +00:00
jtc
a66b1cae00
Fix from Aaron Brown that fixes some typos
1996-09-23 18:15:48 +00:00
jtc
3d592bf5cd
Use ${COMPILE.S}' instead of
${CPP} ..... | ${AS} ....' to compile
...
assembly language source.
1996-09-20 19:51:50 +00:00
cgd
ea52c85b3a
use -pg rather than -p when compiling profiled objects.
1996-09-05 19:12:33 +00:00
mycroft
fceadcfbd1
Use the `-q' option to tsort(1). From der Mouse, PR 1204.
1996-01-17 20:39:26 +00:00
christos
70174eb6fe
Added include file <bsd.sys.mk> that contains lex and yacc "parallel aware"
...
rules. These rules are not turned on by default; they are enabled by setting
the PARALLEL variable.
1995-10-22 00:45:53 +00:00
pk
ba51c14e09
Use CPPFLAGS in .S rules.
1995-09-30 12:21:33 +00:00
christos
6e591491c3
- make sure the afterdepend rule fires `after' .depend gets created.
...
[fixed for parallel make]
- make depend prettier printing.
1995-09-27 01:15:09 +00:00
jtc
7065a25cef
Fix .cc.o .C.o rule; PR #1522
1995-09-26 23:48:24 +00:00
christos
03d121f492
- Actually commit the bsd.lib.mk changes mentioned above...
1995-09-25 00:53:09 +00:00
cgd
73037ca2b0
oops
1995-06-29 17:43:13 +00:00
cgd
7d5b9a0d95
fix a paste-o
1995-06-27 20:37:29 +00:00
cgd
aebda19c0b
fix more possibly-empty 'rm's, here. kill long-dead {profiled,...}/* cleans
1995-06-26 00:19:44 +00:00
cgd
f386420eb0
update lint rules, but keep linting disabled
1995-06-24 08:27:37 +00:00
jtc
e3c663eb4c
.include <bsd.nls.mk> unless NONLS is defined.
1995-04-21 20:29:40 +00:00
cgd
622d3ff963
don't ranlib read-only files. patch for bug 977, from Greg Hudson
...
(ghudson@MIT.EDU ). He doesn't think this patch is particularly
beautiful, but i'm not sure much can be done about that.
in particular:
(1) installing to a different file name, then chowning that
and using 'mv' brings up a couple of bugs that
can't reasonably be tested for (and shouldn't have to be),
(2) you don't particularly want people trying to use the libraries
until they've been successfully installed, anyway.
1995-04-19 06:26:50 +00:00
mycroft
6f9568d22b
Slight simpliciation.
1994-12-13 08:46:22 +00:00
cgd
02ee725315
include bsd.own.mk early on, to get NOPIC definition.
1994-08-19 15:48:12 +00:00
pk
0e7e1e9127
Don't keep local symbols in a shared library symbol table.
1994-08-09 13:04:28 +00:00
mycroft
753b97a485
Include ${CPPFLAGS} when compiling .c and .cc files.
1994-07-06 04:09:55 +00:00
deraadt
ec891b096e
.m4 files are sources too
1994-06-30 06:47:38 +00:00
cgd
61d2ae79f4
RCSID frobbing, and minor sanity adjustments.
1994-06-30 05:31:04 +00:00
cgd
b233f19e46
don't be careless with _SUBDIRUSE
1994-06-30 05:21:28 +00:00
mycroft
41172b0ea8
Remove *.core on clean.
1994-03-24 16:11:38 +00:00
cgd
38a3d1726d
kill install -d's.
1994-02-09 23:50:32 +00:00
jtc
894ae428ab
Moved manpage formatting rules from sys.mk to bsd.man.mk.
...
Some programs (like ispell) use *.[0-8] for non-manpage things, and having
the manpage rules in sys.mk really messes things up.
1994-01-31 18:40:10 +00:00
pk
ea692b4d19
Archive member names need no longer be truncated.
1994-01-07 00:52:44 +00:00
mycroft
27f957c30b
`ld -x -r' on .so files really does work now. Maybe it will continue to for
...
a little while.
1994-01-06 04:32:35 +00:00
mycroft
0f7e1c4931
ld -x -r for .so files clearly does not work yet.
1994-01-05 23:29:39 +00:00
mycroft
928cf6a75f
Use ${DPADD} and ${LDADD} only when building shared library.
1994-01-04 20:26:52 +00:00
mycroft
28c41313e6
Reinstate `ld -x -r' for .so.
1994-01-04 19:08:55 +00:00
cgd
e501423fab
allow .S; keep .s around for now
1993-12-04 01:28:39 +00:00
pk
c1420efe26
Always install lib*_pic.a archives.
1993-11-14 16:45:05 +00:00