2003-09-13 23:08:26 +04:00
|
|
|
# $NetBSD: bsd.lib.mk,v 1.234 2003/09/13 19:08:27 lukem Exp $
|
1997-03-29 11:02:45 +03:00
|
|
|
# @(#)bsd.lib.mk 8.3 (Berkeley) 4/22/94
|
1993-03-21 12:45:37 +03:00
|
|
|
|
2001-11-02 08:21:47 +03:00
|
|
|
.include <bsd.init.mk>
|
Only use the MKDYNAMICROOT semantics (i.e. -rpath=/lib,/usr/lib and
-dynamic-linker=/libexec/ld.elf_so) if the BINDIR of the program being
built is /bin or /sbin.
The reason we do this is because now all programs *except* those in
/bin and /sbin (i.e. the "special cases") match the default the compiler
uses, which is what is used for things in e.g. xsrc, pkgsrc, and other
random 3rd party programs.
This is done by decoupling where a shlib is installed from how it
is located. Two new variables, SHLIBINSTALLDIR and SHLINKINSTALLDIR,
contain the former information, and key off MKDYNAMICROOT only. SHLIBDIR
and SHLINKDIR contain the latter, and key off MKDYNAMICROOT and BINDIR.
The SHLIBINSTALLDIR, SHLIBDIR, _LIBSODIR, SHLINKINSTALLDIR, and
SHLINKDIR parameters are moved to a new <bsd.shlib.mk>; see bsd.README
for usage details.
2002-09-28 01:37:50 +04:00
|
|
|
.include <bsd.shlib.mk>
|
2003-06-01 00:33:15 +04:00
|
|
|
.include <bsd.gcc.mk>
|
2003-07-28 06:29:35 +04:00
|
|
|
# Pull in <bsd.sys.mk> here so we can override its .c.o rule
|
|
|
|
.include <bsd.sys.mk>
|
1997-10-11 12:16:24 +04:00
|
|
|
|
2001-11-02 08:21:47 +03:00
|
|
|
##### Basic targets
|
1998-11-07 12:40:35 +03:00
|
|
|
.PHONY: checkver cleanlib libinstall
|
|
|
|
realinstall: checkver libinstall
|
2001-08-14 11:02:13 +04:00
|
|
|
clean: cleanlib
|
1994-08-19 19:48:12 +04:00
|
|
|
|
2003-09-13 06:52:05 +04:00
|
|
|
##### LIB specific flags.
|
|
|
|
COPTS+= ${COPTS.lib${LIB}}
|
|
|
|
CPPFLAGS+= ${CPPFLAGS.lib${LIB}}
|
|
|
|
CXXFLAGS+= ${CXXFLAGS.lib${LIB}}
|
|
|
|
LDADD+= ${LDADD.lib${LIB}}
|
2003-09-13 07:44:20 +04:00
|
|
|
LDFLAGS+= ${LDFLAGS.lib${LIB}}
|
|
|
|
LDSTATIC+= ${LDSTATIC.lib${LIB}}
|
2003-09-13 06:52:05 +04:00
|
|
|
|
2001-11-02 08:21:47 +03:00
|
|
|
##### Build and install rules
|
2001-11-19 05:46:50 +03:00
|
|
|
CPPFLAGS+= ${DESTDIR:D-nostdinc ${CPPFLAG_ISYSTEM} ${DESTDIR}/usr/include}
|
2003-07-27 18:49:22 +04:00
|
|
|
CXXFLAGS+= ${DESTDIR:D-nostdinc++ ${CPPFLAG_ISYSTEMXX} ${DESTDIR}/usr/include/g++}
|
2001-11-15 00:49:53 +03:00
|
|
|
|
2001-09-21 19:16:09 +04:00
|
|
|
.if !defined(SHLIB_MAJOR) && exists(${SHLIB_VERSION_FILE})
|
1999-06-10 04:40:05 +04:00
|
|
|
SHLIB_MAJOR != . ${SHLIB_VERSION_FILE} ; echo $$major
|
|
|
|
SHLIB_MINOR != . ${SHLIB_VERSION_FILE} ; echo $$minor
|
2000-07-04 01:08:55 +04:00
|
|
|
SHLIB_TEENY != . ${SHLIB_VERSION_FILE} ; echo $$teeny
|
1998-11-07 12:40:35 +03:00
|
|
|
|
|
|
|
# Check for higher installed library versions.
|
1998-12-01 02:34:44 +03:00
|
|
|
.if !defined(NOCHECKVER) && !defined(NOCHECKVER_${LIB}) && \
|
2002-04-26 19:02:02 +04:00
|
|
|
exists(${NETBSDSRCDIR}/lib/checkver)
|
1998-11-07 12:40:35 +03:00
|
|
|
checkver:
|
1998-11-12 08:39:45 +03:00
|
|
|
@(cd ${.CURDIR} && \
|
2002-04-26 19:02:02 +04:00
|
|
|
sh ${NETBSDSRCDIR}/lib/checkver -v ${SHLIB_VERSION_FILE} \
|
* Add user-controlled mk.conf variables
- SHLIBDIR Location to install shared libraries if ${USE_SHLIBDIR}
is "yes". Defaults to "/usr/lib".
- USE_SHLIBDIR If "yes", install shared libraries in ${SHLIBDIR}
instead of ${LIBDIR}. Defaults to "no".
Sets ${_LIBSODIR} to the appropriate value.
This may be set by individual Makefiles as well.
- SHLINKDIR Location of shared linker. Defaults to "/usr/libexec".
If != "/usr/libexec", change the dynamic-linker
encoded in shared programs
* Set USE_SHLIBDIR for libraries used by /bin and /sbin:
libc libcrypt libcrypto libedit libipsec libkvm libm libmi387
libtermcap libutil libz
* If ${_LIBSODIR} != ${LIBDIR}, add symlinks from ${LIBDIR}/${LIB}.so*
to ${_LIBSODIR}/${LIB}.so* for compatibility.
* Always install /sbin/init statically (for now)
The net effect of these changes depends on how the variables are set:
1.) If nothing is set or changed, there is no change from the
current behaviour:
- Static /bin, /sbin, and bits of /usr/*
- Dynamic rest
- Shared linker is /usr/libexec/ld*so
2.) If the following make variables are set:
LDSTATIC=
SHLINKDIR=/lib
SHLIBDIR=/lib
Then the behaviour becomes:
- Dynamic tools
- .so libraries used by /bin and /sbin are installed to /lib,
with symlinks from /usr/lib/lib*so to -> /lib/lib*so
where appropriate
- Shared linker is /lib/ld*so
3.) As per 2.), but add the following variable:
USE_SHLIBDIR=yes
This forces all .so's to be instaleld in /lib (with compat
symlinks), not just those tagged by their Makefiles to be.
Again, compat symlinks are installed
2001-12-28 04:32:37 +03:00
|
|
|
-d ${DESTDIR}${_LIBSODIR} ${LIB})
|
2000-07-14 23:53:04 +04:00
|
|
|
.endif
|
|
|
|
.endif
|
|
|
|
|
|
|
|
.if !target(checkver)
|
1998-11-07 12:40:35 +03:00
|
|
|
checkver:
|
|
|
|
.endif
|
2000-07-14 23:53:04 +04:00
|
|
|
|
2000-06-19 23:35:05 +04:00
|
|
|
print-shlib-major:
|
2001-09-21 19:25:49 +04:00
|
|
|
.if defined(SHLIB_MAJOR) && ${MKPIC} != "no"
|
2000-06-19 23:35:05 +04:00
|
|
|
@echo ${SHLIB_MAJOR}
|
2000-07-14 23:53:04 +04:00
|
|
|
.else
|
|
|
|
@false
|
|
|
|
.endif
|
2000-06-19 23:35:05 +04:00
|
|
|
|
|
|
|
print-shlib-minor:
|
2001-09-21 19:25:49 +04:00
|
|
|
.if defined(SHLIB_MINOR) && ${MKPIC} != "no"
|
2000-06-19 23:35:05 +04:00
|
|
|
@echo ${SHLIB_MINOR}
|
2000-07-14 23:53:04 +04:00
|
|
|
.else
|
|
|
|
@false
|
|
|
|
.endif
|
2000-07-04 01:08:55 +04:00
|
|
|
|
|
|
|
print-shlib-teeny:
|
2001-09-21 19:25:49 +04:00
|
|
|
.if defined(SHLIB_TEENY) && ${MKPIC} != "no"
|
2000-07-04 01:08:55 +04:00
|
|
|
@echo ${SHLIB_TEENY}
|
1998-11-07 12:40:35 +03:00
|
|
|
.else
|
2000-06-19 23:35:05 +04:00
|
|
|
@false
|
2000-07-14 23:53:04 +04:00
|
|
|
.endif
|
2000-07-04 01:08:55 +04:00
|
|
|
|
2000-07-14 23:53:04 +04:00
|
|
|
.if defined(SHLIB_MAJOR) && !empty(SHLIB_MAJOR)
|
|
|
|
.if defined(SHLIB_MINOR) && !empty(SHLIB_MINOR)
|
|
|
|
.if defined(SHLIB_TEENY) && !empty(SHLIB_TEENY)
|
|
|
|
SHLIB_FULLVERSION=${SHLIB_MAJOR}.${SHLIB_MINOR}.${SHLIB_TEENY}
|
|
|
|
.else
|
|
|
|
SHLIB_FULLVERSION=${SHLIB_MAJOR}.${SHLIB_MINOR}
|
|
|
|
.endif
|
|
|
|
.else
|
|
|
|
SHLIB_FULLVERSION=${SHLIB_MAJOR}
|
|
|
|
.endif
|
1993-11-03 01:02:12 +03:00
|
|
|
.endif
|
|
|
|
|
1997-05-09 10:19:55 +04:00
|
|
|
# add additional suffixes not exported.
|
|
|
|
# .po is used for profiling object files.
|
|
|
|
# .so is used for PIC object files.
|
2003-07-20 21:01:58 +04:00
|
|
|
.SUFFIXES: .out .a .ln .so .po .o .s .S .c .cc .cpp .cxx .C .m .F .f .r .y .l .cl .p .h
|
1997-10-28 15:40:16 +03:00
|
|
|
.SUFFIXES: .sh .m4 .m
|
1993-03-21 12:45:37 +03:00
|
|
|
|
1997-03-15 14:35:04 +03:00
|
|
|
|
|
|
|
# Set PICFLAGS to cc flags for producing position-independent code,
|
|
|
|
# if not already set. Includes -DPIC, if required.
|
|
|
|
|
2000-04-24 18:22:05 +04:00
|
|
|
# Data-driven table using make variables to control how shared libraries
|
1997-03-15 14:35:04 +03:00
|
|
|
# are built for different platforms and object formats.
|
1998-02-23 13:09:31 +03:00
|
|
|
# OBJECT_FMT: currently either "ELF" or "a.out", from <bsd.own.mk>
|
2000-04-24 18:22:05 +04:00
|
|
|
# SHLIB_SOVERSION: version number to be compiled into a shared library
|
|
|
|
# via -soname. Usualy ${SHLIB_MAJOR} on ELF.
|
2000-07-14 23:53:04 +04:00
|
|
|
# NetBSD/pmax used to use ${SHLIB_MAJOR}[.${SHLIB_MINOR}
|
|
|
|
# [.${SHLIB_TEENY}]]
|
2000-04-24 18:22:05 +04:00
|
|
|
# SHLIB_SHFLAGS: Flags to tell ${LD} to emit shared library.
|
1998-02-18 06:14:31 +03:00
|
|
|
# with ELF, also set shared-lib version for ld.so.
|
|
|
|
# SHLIB_LDSTARTFILE: support .o file, call C++ file-level constructors
|
|
|
|
# SHLIB_LDENDFILE: support .o file, call C++ file-level destructors
|
2001-04-27 21:04:39 +04:00
|
|
|
# FPICFLAGS: flags for ${FC} to compile .[fF] files to .so objects.
|
2000-04-24 18:22:05 +04:00
|
|
|
# CPPICFLAGS: flags for ${CPP} to preprocess .[sS] files for ${AS}
|
2002-07-20 12:50:10 +04:00
|
|
|
# CPICFLAGS: flags for ${CC} to compile .[cC] files to pic objects.
|
|
|
|
# CSHLIBFLAGS: flags for ${CC} to compile .[cC] files to .so objects.
|
|
|
|
# (usually includes ${CPICFLAGS})
|
|
|
|
# CAPICFLAGS: flags for ${CC} to compiling .[Ss] files
|
1997-05-24 05:42:36 +04:00
|
|
|
# (usually just ${CPPPICFLAGS} ${CPICFLAGS})
|
2000-04-24 18:22:05 +04:00
|
|
|
# APICFLAGS: flags for ${AS} to assemble .[sS] to .so objects.
|
1997-03-15 14:35:04 +03:00
|
|
|
|
1999-02-12 04:10:06 +03:00
|
|
|
.if ${MACHINE_ARCH} == "alpha"
|
2002-11-09 11:22:04 +03:00
|
|
|
|
2001-04-27 21:04:39 +04:00
|
|
|
FPICFLAGS ?= -fPIC
|
2000-04-29 21:41:11 +04:00
|
|
|
CPICFLAGS ?= -fPIC -DPIC
|
2003-07-18 08:04:03 +04:00
|
|
|
CPPPICFLAGS?= -DPIC
|
1997-05-24 05:42:36 +04:00
|
|
|
CAPICFLAGS?= ${CPPPICFLAGS} ${CPICFLAGS}
|
|
|
|
APICFLAGS ?=
|
2002-11-09 11:22:04 +03:00
|
|
|
|
2000-07-19 18:16:22 +04:00
|
|
|
.elif (${MACHINE_ARCH} == "sparc" || ${MACHINE_ARCH} == "sparc64") && \
|
|
|
|
${OBJECT_FMT} == "ELF"
|
2002-11-09 11:22:04 +03:00
|
|
|
|
2003-07-18 08:04:03 +04:00
|
|
|
# If you use -fPIC you need to define BIGPIC to turn on 32-bit
|
2002-05-07 05:45:45 +04:00
|
|
|
# relocations in asm code
|
2001-04-27 21:04:39 +04:00
|
|
|
FPICFLAGS ?= -fPIC
|
2000-07-17 20:49:30 +04:00
|
|
|
CPICFLAGS ?= -fPIC -DPIC
|
2002-05-07 05:45:45 +04:00
|
|
|
CPPPICFLAGS?= -DPIC -DBIGPIC
|
2000-07-17 20:49:30 +04:00
|
|
|
CAPICFLAGS?= ${CPPPICFLAGS} ${CPICFLAGS}
|
2002-05-07 06:06:32 +04:00
|
|
|
APICFLAGS ?= -KPIC
|
2000-07-17 20:49:30 +04:00
|
|
|
|
2002-07-01 23:29:31 +04:00
|
|
|
.elif ${MACHINE_ARCH} == "hppa"
|
|
|
|
|
|
|
|
FPICFLAGS ?= -fPIC
|
|
|
|
CPICFLAGS?= -fPIC -DPIC
|
2003-07-18 08:04:03 +04:00
|
|
|
CPPPICFLAGS?= -DPIC
|
2002-07-01 23:29:31 +04:00
|
|
|
CAPICFLAGS?= ${CPPPICFLAGS} ${CPICFLAGS}
|
|
|
|
APICFLAGS?= -k
|
|
|
|
# XXX libraries often need the millicode functions in libgcc.a,
|
|
|
|
# so we have to work around the -nostdlib:
|
Overhaul how the .{c,cc,cpp,cxx,C,f,m.S}.{o,po,so} rules are implemented:
only list the (often complicated) ${COMPILE.*} rules once always building
to ${.TARGET}.tmp. Then, depending on whether *OPTS has -g, either
"mv ${.TARGET}.tmp ${.TARGET}" or "${LD} -[xX] -r ${TARGET}.tmp -o ${.TARGET}"
as appropriate.
This can prevent inconsistency that could occur between "echo ${COMPILE.*:Q}"
and "${COMPILE.*}", such as the problem in rev 1.226. (There were still
examples of this in .cc.so and .m.so !!!)
Remove `@' from most non-echo rules, so that we can actually see what's
happening. This helps debugging problems, such as that fixed by rev 1.226.
Always remove all possible temp files that might occur because of the above.
Be consistent about ${CC} instead of $(CC)
2003-07-28 08:08:47 +04:00
|
|
|
LDADD+= `${CC} -print-libgcc-file-name`
|
2002-07-01 23:29:31 +04:00
|
|
|
|
1997-03-15 14:35:04 +03:00
|
|
|
.else
|
|
|
|
|
2001-10-25 23:32:15 +04:00
|
|
|
# Platform-independent flags for NetBSD a.out shared libraries
|
2000-07-04 01:08:55 +04:00
|
|
|
SHLIB_SOVERSION=${SHLIB_FULLVERSION}
|
1998-02-23 13:09:31 +03:00
|
|
|
SHLIB_SHFLAGS=
|
2001-04-27 21:04:39 +04:00
|
|
|
FPICFLAGS ?= -fPIC
|
2000-04-29 21:41:11 +04:00
|
|
|
CPICFLAGS?= -fPIC -DPIC
|
2003-07-18 08:04:03 +04:00
|
|
|
CPPPICFLAGS?= -DPIC
|
1997-05-24 05:42:36 +04:00
|
|
|
CAPICFLAGS?= ${CPPPICFLAGS} ${CPICFLAGS}
|
|
|
|
APICFLAGS?= -k
|
1997-03-15 14:35:04 +03:00
|
|
|
|
|
|
|
.endif
|
|
|
|
|
2002-07-20 12:50:10 +04:00
|
|
|
.if ${MKPICLIB} != "no"
|
|
|
|
CSHLIBFLAGS+= ${CPICFLAGS}
|
|
|
|
.endif
|
|
|
|
|
|
|
|
.if defined(CSHLIBFLAGS) && !empty(CSHLIBFLAGS)
|
|
|
|
MKSHLIBOBJS= yes
|
|
|
|
.else
|
|
|
|
MKSHLIBOBJS= no
|
|
|
|
.endif
|
|
|
|
|
1998-02-18 06:14:31 +03:00
|
|
|
# Platform-independent linker flags for ELF shared libraries
|
1999-02-12 04:10:06 +03:00
|
|
|
.if ${OBJECT_FMT} == "ELF"
|
2001-06-08 15:41:59 +04:00
|
|
|
SHLIB_SOVERSION= ${SHLIB_MAJOR}
|
2003-06-27 21:27:11 +04:00
|
|
|
SHLIB_SHFLAGS= -Wl,-soname,lib${LIB}.so.${SHLIB_SOVERSION}
|
2003-06-01 00:33:15 +04:00
|
|
|
SHLIB_LDSTARTFILE?= ${DESTDIR}/usr/lib/crti.o ${_GCC_CRTBEGINS}
|
|
|
|
SHLIB_LDENDFILE?= ${_GCC_CRTENDS} ${DESTDIR}/usr/lib/crtn.o
|
2003-03-30 04:35:07 +04:00
|
|
|
.endif
|
1997-03-15 14:35:04 +03:00
|
|
|
|
1997-01-28 06:38:40 +03:00
|
|
|
CFLAGS+= ${COPTS}
|
2001-04-27 21:04:39 +04:00
|
|
|
FFLAGS+= ${FOPTS}
|
1997-01-28 06:38:40 +03:00
|
|
|
|
1993-03-21 12:45:37 +03:00
|
|
|
.c.o:
|
Overhaul how the .{c,cc,cpp,cxx,C,f,m.S}.{o,po,so} rules are implemented:
only list the (often complicated) ${COMPILE.*} rules once always building
to ${.TARGET}.tmp. Then, depending on whether *OPTS has -g, either
"mv ${.TARGET}.tmp ${.TARGET}" or "${LD} -[xX] -r ${TARGET}.tmp -o ${.TARGET}"
as appropriate.
This can prevent inconsistency that could occur between "echo ${COMPILE.*:Q}"
and "${COMPILE.*}", such as the problem in rev 1.226. (There were still
examples of this in .cc.so and .m.so !!!)
Remove `@' from most non-echo rules, so that we can actually see what's
happening. This helps debugging problems, such as that fixed by rev 1.226.
Always remove all possible temp files that might occur because of the above.
Be consistent about ${CC} instead of $(CC)
2003-07-28 08:08:47 +04:00
|
|
|
${COMPILE.c} ${COPTS.${.IMPSRC:T}} ${CPUFLAGS.${.IMPSRC:T}} ${CPPFLAGS.${.IMPSRC:T}} ${.IMPSRC} -o ${.TARGET}.tmp
|
1999-06-07 05:37:00 +04:00
|
|
|
.if defined(COPTS) && !empty(COPTS:M*-g*)
|
Overhaul how the .{c,cc,cpp,cxx,C,f,m.S}.{o,po,so} rules are implemented:
only list the (often complicated) ${COMPILE.*} rules once always building
to ${.TARGET}.tmp. Then, depending on whether *OPTS has -g, either
"mv ${.TARGET}.tmp ${.TARGET}" or "${LD} -[xX] -r ${TARGET}.tmp -o ${.TARGET}"
as appropriate.
This can prevent inconsistency that could occur between "echo ${COMPILE.*:Q}"
and "${COMPILE.*}", such as the problem in rev 1.226. (There were still
examples of this in .cc.so and .m.so !!!)
Remove `@' from most non-echo rules, so that we can actually see what's
happening. This helps debugging problems, such as that fixed by rev 1.226.
Always remove all possible temp files that might occur because of the above.
Be consistent about ${CC} instead of $(CC)
2003-07-28 08:08:47 +04:00
|
|
|
mv ${.TARGET}.tmp ${.TARGET}
|
1999-06-07 05:37:00 +04:00
|
|
|
.else
|
Overhaul how the .{c,cc,cpp,cxx,C,f,m.S}.{o,po,so} rules are implemented:
only list the (often complicated) ${COMPILE.*} rules once always building
to ${.TARGET}.tmp. Then, depending on whether *OPTS has -g, either
"mv ${.TARGET}.tmp ${.TARGET}" or "${LD} -[xX] -r ${TARGET}.tmp -o ${.TARGET}"
as appropriate.
This can prevent inconsistency that could occur between "echo ${COMPILE.*:Q}"
and "${COMPILE.*}", such as the problem in rev 1.226. (There were still
examples of this in .cc.so and .m.so !!!)
Remove `@' from most non-echo rules, so that we can actually see what's
happening. This helps debugging problems, such as that fixed by rev 1.226.
Always remove all possible temp files that might occur because of the above.
Be consistent about ${CC} instead of $(CC)
2003-07-28 08:08:47 +04:00
|
|
|
${LD} -x -r ${.TARGET}.tmp -o ${.TARGET}
|
|
|
|
rm -f ${.TARGET}.tmp
|
1999-06-07 05:37:00 +04:00
|
|
|
.endif
|
1993-03-21 12:45:37 +03:00
|
|
|
|
|
|
|
.c.po:
|
Overhaul how the .{c,cc,cpp,cxx,C,f,m.S}.{o,po,so} rules are implemented:
only list the (often complicated) ${COMPILE.*} rules once always building
to ${.TARGET}.tmp. Then, depending on whether *OPTS has -g, either
"mv ${.TARGET}.tmp ${.TARGET}" or "${LD} -[xX] -r ${TARGET}.tmp -o ${.TARGET}"
as appropriate.
This can prevent inconsistency that could occur between "echo ${COMPILE.*:Q}"
and "${COMPILE.*}", such as the problem in rev 1.226. (There were still
examples of this in .cc.so and .m.so !!!)
Remove `@' from most non-echo rules, so that we can actually see what's
happening. This helps debugging problems, such as that fixed by rev 1.226.
Always remove all possible temp files that might occur because of the above.
Be consistent about ${CC} instead of $(CC)
2003-07-28 08:08:47 +04:00
|
|
|
${COMPILE.c} ${COPTS.${.IMPSRC:T}} ${CPUFLAGS.${.IMPSRC:T}} ${CPPFLAGS.${.IMPSRC:T}} -pg ${.IMPSRC} -o ${.TARGET}.tmp
|
1999-06-07 05:37:00 +04:00
|
|
|
.if defined(COPTS) && !empty(COPTS:M*-g*)
|
Overhaul how the .{c,cc,cpp,cxx,C,f,m.S}.{o,po,so} rules are implemented:
only list the (often complicated) ${COMPILE.*} rules once always building
to ${.TARGET}.tmp. Then, depending on whether *OPTS has -g, either
"mv ${.TARGET}.tmp ${.TARGET}" or "${LD} -[xX] -r ${TARGET}.tmp -o ${.TARGET}"
as appropriate.
This can prevent inconsistency that could occur between "echo ${COMPILE.*:Q}"
and "${COMPILE.*}", such as the problem in rev 1.226. (There were still
examples of this in .cc.so and .m.so !!!)
Remove `@' from most non-echo rules, so that we can actually see what's
happening. This helps debugging problems, such as that fixed by rev 1.226.
Always remove all possible temp files that might occur because of the above.
Be consistent about ${CC} instead of $(CC)
2003-07-28 08:08:47 +04:00
|
|
|
mv ${.TARGET}.tmp ${.TARGET}
|
1999-06-07 05:37:00 +04:00
|
|
|
.else
|
Overhaul how the .{c,cc,cpp,cxx,C,f,m.S}.{o,po,so} rules are implemented:
only list the (often complicated) ${COMPILE.*} rules once always building
to ${.TARGET}.tmp. Then, depending on whether *OPTS has -g, either
"mv ${.TARGET}.tmp ${.TARGET}" or "${LD} -[xX] -r ${TARGET}.tmp -o ${.TARGET}"
as appropriate.
This can prevent inconsistency that could occur between "echo ${COMPILE.*:Q}"
and "${COMPILE.*}", such as the problem in rev 1.226. (There were still
examples of this in .cc.so and .m.so !!!)
Remove `@' from most non-echo rules, so that we can actually see what's
happening. This helps debugging problems, such as that fixed by rev 1.226.
Always remove all possible temp files that might occur because of the above.
Be consistent about ${CC} instead of $(CC)
2003-07-28 08:08:47 +04:00
|
|
|
${LD} -X -r ${.TARGET}.tmp -o ${.TARGET}
|
|
|
|
rm -f ${.TARGET}.tmp
|
1999-06-07 05:37:00 +04:00
|
|
|
.endif
|
1993-03-21 12:45:37 +03:00
|
|
|
|
1993-09-29 04:02:21 +03:00
|
|
|
.c.so:
|
Overhaul how the .{c,cc,cpp,cxx,C,f,m.S}.{o,po,so} rules are implemented:
only list the (often complicated) ${COMPILE.*} rules once always building
to ${.TARGET}.tmp. Then, depending on whether *OPTS has -g, either
"mv ${.TARGET}.tmp ${.TARGET}" or "${LD} -[xX] -r ${TARGET}.tmp -o ${.TARGET}"
as appropriate.
This can prevent inconsistency that could occur between "echo ${COMPILE.*:Q}"
and "${COMPILE.*}", such as the problem in rev 1.226. (There were still
examples of this in .cc.so and .m.so !!!)
Remove `@' from most non-echo rules, so that we can actually see what's
happening. This helps debugging problems, such as that fixed by rev 1.226.
Always remove all possible temp files that might occur because of the above.
Be consistent about ${CC} instead of $(CC)
2003-07-28 08:08:47 +04:00
|
|
|
${COMPILE.c} ${COPTS.${.IMPSRC:T}} ${CPUFLAGS.${.IMPSRC:T}} ${CPPFLAGS.${.IMPSRC:T}} ${CSHLIBFLAGS} ${.IMPSRC} -o ${.TARGET}.tmp
|
1999-06-07 05:37:00 +04:00
|
|
|
.if defined(COPTS) && !empty(COPTS:M*-g*)
|
Overhaul how the .{c,cc,cpp,cxx,C,f,m.S}.{o,po,so} rules are implemented:
only list the (often complicated) ${COMPILE.*} rules once always building
to ${.TARGET}.tmp. Then, depending on whether *OPTS has -g, either
"mv ${.TARGET}.tmp ${.TARGET}" or "${LD} -[xX] -r ${TARGET}.tmp -o ${.TARGET}"
as appropriate.
This can prevent inconsistency that could occur between "echo ${COMPILE.*:Q}"
and "${COMPILE.*}", such as the problem in rev 1.226. (There were still
examples of this in .cc.so and .m.so !!!)
Remove `@' from most non-echo rules, so that we can actually see what's
happening. This helps debugging problems, such as that fixed by rev 1.226.
Always remove all possible temp files that might occur because of the above.
Be consistent about ${CC} instead of $(CC)
2003-07-28 08:08:47 +04:00
|
|
|
mv ${.TARGET}.tmp ${.TARGET}
|
1999-06-07 05:37:00 +04:00
|
|
|
.else
|
Overhaul how the .{c,cc,cpp,cxx,C,f,m.S}.{o,po,so} rules are implemented:
only list the (often complicated) ${COMPILE.*} rules once always building
to ${.TARGET}.tmp. Then, depending on whether *OPTS has -g, either
"mv ${.TARGET}.tmp ${.TARGET}" or "${LD} -[xX] -r ${TARGET}.tmp -o ${.TARGET}"
as appropriate.
This can prevent inconsistency that could occur between "echo ${COMPILE.*:Q}"
and "${COMPILE.*}", such as the problem in rev 1.226. (There were still
examples of this in .cc.so and .m.so !!!)
Remove `@' from most non-echo rules, so that we can actually see what's
happening. This helps debugging problems, such as that fixed by rev 1.226.
Always remove all possible temp files that might occur because of the above.
Be consistent about ${CC} instead of $(CC)
2003-07-28 08:08:47 +04:00
|
|
|
${LD} -x -r ${.TARGET}.tmp -o ${.TARGET}
|
|
|
|
rm -f ${.TARGET}.tmp
|
1999-06-07 05:37:00 +04:00
|
|
|
.endif
|
1993-09-29 04:02:21 +03:00
|
|
|
|
1995-06-24 12:27:37 +04:00
|
|
|
.c.ln:
|
2003-07-22 10:53:21 +04:00
|
|
|
${LINT} ${LINTFLAGS} ${CPPFLAGS:M-[IDU]*} ${CPPFLAGS.${.IMPSRC:T}:M-[-IDU]*} -i ${.IMPSRC}
|
1995-06-24 12:27:37 +04:00
|
|
|
|
2003-07-20 21:01:58 +04:00
|
|
|
.cc.o .cpp.o .cxx.o .C.o:
|
Overhaul how the .{c,cc,cpp,cxx,C,f,m.S}.{o,po,so} rules are implemented:
only list the (often complicated) ${COMPILE.*} rules once always building
to ${.TARGET}.tmp. Then, depending on whether *OPTS has -g, either
"mv ${.TARGET}.tmp ${.TARGET}" or "${LD} -[xX] -r ${TARGET}.tmp -o ${.TARGET}"
as appropriate.
This can prevent inconsistency that could occur between "echo ${COMPILE.*:Q}"
and "${COMPILE.*}", such as the problem in rev 1.226. (There were still
examples of this in .cc.so and .m.so !!!)
Remove `@' from most non-echo rules, so that we can actually see what's
happening. This helps debugging problems, such as that fixed by rev 1.226.
Always remove all possible temp files that might occur because of the above.
Be consistent about ${CC} instead of $(CC)
2003-07-28 08:08:47 +04:00
|
|
|
${COMPILE.cc} ${COPTS.${.IMPSRC:T}} ${CPUFLAGS.${.IMPSRC:T}} ${CPPFLAGS.${.IMPSRC:T}} ${.IMPSRC} -o ${.TARGET}.tmp
|
1999-06-07 05:37:00 +04:00
|
|
|
.if defined(COPTS) && !empty(COPTS:M*-g*)
|
Overhaul how the .{c,cc,cpp,cxx,C,f,m.S}.{o,po,so} rules are implemented:
only list the (often complicated) ${COMPILE.*} rules once always building
to ${.TARGET}.tmp. Then, depending on whether *OPTS has -g, either
"mv ${.TARGET}.tmp ${.TARGET}" or "${LD} -[xX] -r ${TARGET}.tmp -o ${.TARGET}"
as appropriate.
This can prevent inconsistency that could occur between "echo ${COMPILE.*:Q}"
and "${COMPILE.*}", such as the problem in rev 1.226. (There were still
examples of this in .cc.so and .m.so !!!)
Remove `@' from most non-echo rules, so that we can actually see what's
happening. This helps debugging problems, such as that fixed by rev 1.226.
Always remove all possible temp files that might occur because of the above.
Be consistent about ${CC} instead of $(CC)
2003-07-28 08:08:47 +04:00
|
|
|
mv ${.TARGET}.tmp ${.TARGET}
|
1999-06-07 05:37:00 +04:00
|
|
|
.else
|
Overhaul how the .{c,cc,cpp,cxx,C,f,m.S}.{o,po,so} rules are implemented:
only list the (often complicated) ${COMPILE.*} rules once always building
to ${.TARGET}.tmp. Then, depending on whether *OPTS has -g, either
"mv ${.TARGET}.tmp ${.TARGET}" or "${LD} -[xX] -r ${TARGET}.tmp -o ${.TARGET}"
as appropriate.
This can prevent inconsistency that could occur between "echo ${COMPILE.*:Q}"
and "${COMPILE.*}", such as the problem in rev 1.226. (There were still
examples of this in .cc.so and .m.so !!!)
Remove `@' from most non-echo rules, so that we can actually see what's
happening. This helps debugging problems, such as that fixed by rev 1.226.
Always remove all possible temp files that might occur because of the above.
Be consistent about ${CC} instead of $(CC)
2003-07-28 08:08:47 +04:00
|
|
|
${LD} -x -r ${.TARGET}.tmp -o ${.TARGET}
|
|
|
|
rm -f ${.TARGET}.tmp
|
1999-06-07 05:37:00 +04:00
|
|
|
.endif
|
1993-07-17 16:09:51 +04:00
|
|
|
|
2003-07-20 21:01:58 +04:00
|
|
|
.cc.po .cpp.po .cxx.o .C.po:
|
Overhaul how the .{c,cc,cpp,cxx,C,f,m.S}.{o,po,so} rules are implemented:
only list the (often complicated) ${COMPILE.*} rules once always building
to ${.TARGET}.tmp. Then, depending on whether *OPTS has -g, either
"mv ${.TARGET}.tmp ${.TARGET}" or "${LD} -[xX] -r ${TARGET}.tmp -o ${.TARGET}"
as appropriate.
This can prevent inconsistency that could occur between "echo ${COMPILE.*:Q}"
and "${COMPILE.*}", such as the problem in rev 1.226. (There were still
examples of this in .cc.so and .m.so !!!)
Remove `@' from most non-echo rules, so that we can actually see what's
happening. This helps debugging problems, such as that fixed by rev 1.226.
Always remove all possible temp files that might occur because of the above.
Be consistent about ${CC} instead of $(CC)
2003-07-28 08:08:47 +04:00
|
|
|
${COMPILE.cc} ${COPTS.${.IMPSRC:T}} ${CPUFLAGS.${.IMPSRC:T}} ${CPPFLAGS.${.IMPSRC:T}} -pg ${.IMPSRC} -o ${.TARGET}.tmp
|
1999-06-07 05:37:00 +04:00
|
|
|
.if defined(COPTS) && !empty(COPTS:M*-g*)
|
Overhaul how the .{c,cc,cpp,cxx,C,f,m.S}.{o,po,so} rules are implemented:
only list the (often complicated) ${COMPILE.*} rules once always building
to ${.TARGET}.tmp. Then, depending on whether *OPTS has -g, either
"mv ${.TARGET}.tmp ${.TARGET}" or "${LD} -[xX] -r ${TARGET}.tmp -o ${.TARGET}"
as appropriate.
This can prevent inconsistency that could occur between "echo ${COMPILE.*:Q}"
and "${COMPILE.*}", such as the problem in rev 1.226. (There were still
examples of this in .cc.so and .m.so !!!)
Remove `@' from most non-echo rules, so that we can actually see what's
happening. This helps debugging problems, such as that fixed by rev 1.226.
Always remove all possible temp files that might occur because of the above.
Be consistent about ${CC} instead of $(CC)
2003-07-28 08:08:47 +04:00
|
|
|
mv ${.TARGET}.tmp ${.TARGET}
|
1999-06-07 05:37:00 +04:00
|
|
|
.else
|
Overhaul how the .{c,cc,cpp,cxx,C,f,m.S}.{o,po,so} rules are implemented:
only list the (often complicated) ${COMPILE.*} rules once always building
to ${.TARGET}.tmp. Then, depending on whether *OPTS has -g, either
"mv ${.TARGET}.tmp ${.TARGET}" or "${LD} -[xX] -r ${TARGET}.tmp -o ${.TARGET}"
as appropriate.
This can prevent inconsistency that could occur between "echo ${COMPILE.*:Q}"
and "${COMPILE.*}", such as the problem in rev 1.226. (There were still
examples of this in .cc.so and .m.so !!!)
Remove `@' from most non-echo rules, so that we can actually see what's
happening. This helps debugging problems, such as that fixed by rev 1.226.
Always remove all possible temp files that might occur because of the above.
Be consistent about ${CC} instead of $(CC)
2003-07-28 08:08:47 +04:00
|
|
|
${LD} -X -r ${.TARGET}.tmp -o ${.TARGET}
|
|
|
|
rm -f ${.TARGET}.tmp
|
1999-06-07 05:37:00 +04:00
|
|
|
.endif
|
1993-07-17 16:09:51 +04:00
|
|
|
|
2003-07-20 21:01:58 +04:00
|
|
|
.cc.so .cpp.so .cxx.so .C.so:
|
Overhaul how the .{c,cc,cpp,cxx,C,f,m.S}.{o,po,so} rules are implemented:
only list the (often complicated) ${COMPILE.*} rules once always building
to ${.TARGET}.tmp. Then, depending on whether *OPTS has -g, either
"mv ${.TARGET}.tmp ${.TARGET}" or "${LD} -[xX] -r ${TARGET}.tmp -o ${.TARGET}"
as appropriate.
This can prevent inconsistency that could occur between "echo ${COMPILE.*:Q}"
and "${COMPILE.*}", such as the problem in rev 1.226. (There were still
examples of this in .cc.so and .m.so !!!)
Remove `@' from most non-echo rules, so that we can actually see what's
happening. This helps debugging problems, such as that fixed by rev 1.226.
Always remove all possible temp files that might occur because of the above.
Be consistent about ${CC} instead of $(CC)
2003-07-28 08:08:47 +04:00
|
|
|
${COMPILE.cc} ${COPTS.${.IMPSRC:T}} ${CPUFLAGS.${.IMPSRC:T}} ${CPPFLAGS.${.IMPSRC:T}} ${CSHLIBFLAGS} ${.IMPSRC} -o ${.TARGET}.tmp
|
1999-06-07 05:37:00 +04:00
|
|
|
.if defined(COPTS) && !empty(COPTS:M*-g*)
|
Overhaul how the .{c,cc,cpp,cxx,C,f,m.S}.{o,po,so} rules are implemented:
only list the (often complicated) ${COMPILE.*} rules once always building
to ${.TARGET}.tmp. Then, depending on whether *OPTS has -g, either
"mv ${.TARGET}.tmp ${.TARGET}" or "${LD} -[xX] -r ${TARGET}.tmp -o ${.TARGET}"
as appropriate.
This can prevent inconsistency that could occur between "echo ${COMPILE.*:Q}"
and "${COMPILE.*}", such as the problem in rev 1.226. (There were still
examples of this in .cc.so and .m.so !!!)
Remove `@' from most non-echo rules, so that we can actually see what's
happening. This helps debugging problems, such as that fixed by rev 1.226.
Always remove all possible temp files that might occur because of the above.
Be consistent about ${CC} instead of $(CC)
2003-07-28 08:08:47 +04:00
|
|
|
mv ${.TARGET}.tmp ${.TARGET}
|
1999-06-07 05:37:00 +04:00
|
|
|
.else
|
Overhaul how the .{c,cc,cpp,cxx,C,f,m.S}.{o,po,so} rules are implemented:
only list the (often complicated) ${COMPILE.*} rules once always building
to ${.TARGET}.tmp. Then, depending on whether *OPTS has -g, either
"mv ${.TARGET}.tmp ${.TARGET}" or "${LD} -[xX] -r ${TARGET}.tmp -o ${.TARGET}"
as appropriate.
This can prevent inconsistency that could occur between "echo ${COMPILE.*:Q}"
and "${COMPILE.*}", such as the problem in rev 1.226. (There were still
examples of this in .cc.so and .m.so !!!)
Remove `@' from most non-echo rules, so that we can actually see what's
happening. This helps debugging problems, such as that fixed by rev 1.226.
Always remove all possible temp files that might occur because of the above.
Be consistent about ${CC} instead of $(CC)
2003-07-28 08:08:47 +04:00
|
|
|
${LD} -x -r ${.TARGET}.tmp -o ${.TARGET}
|
|
|
|
rm -f ${.TARGET}.tmp
|
1999-06-07 05:37:00 +04:00
|
|
|
.endif
|
1993-10-04 23:54:33 +03:00
|
|
|
|
2001-04-27 21:04:39 +04:00
|
|
|
.f.o:
|
Overhaul how the .{c,cc,cpp,cxx,C,f,m.S}.{o,po,so} rules are implemented:
only list the (often complicated) ${COMPILE.*} rules once always building
to ${.TARGET}.tmp. Then, depending on whether *OPTS has -g, either
"mv ${.TARGET}.tmp ${.TARGET}" or "${LD} -[xX] -r ${TARGET}.tmp -o ${.TARGET}"
as appropriate.
This can prevent inconsistency that could occur between "echo ${COMPILE.*:Q}"
and "${COMPILE.*}", such as the problem in rev 1.226. (There were still
examples of this in .cc.so and .m.so !!!)
Remove `@' from most non-echo rules, so that we can actually see what's
happening. This helps debugging problems, such as that fixed by rev 1.226.
Always remove all possible temp files that might occur because of the above.
Be consistent about ${CC} instead of $(CC)
2003-07-28 08:08:47 +04:00
|
|
|
${COMPILE.f} ${.IMPSRC} -o ${.TARGET}.tmp
|
2001-04-27 21:04:39 +04:00
|
|
|
.if defined(FOPTS) && !empty(FOPTS:M*-g*)
|
Overhaul how the .{c,cc,cpp,cxx,C,f,m.S}.{o,po,so} rules are implemented:
only list the (often complicated) ${COMPILE.*} rules once always building
to ${.TARGET}.tmp. Then, depending on whether *OPTS has -g, either
"mv ${.TARGET}.tmp ${.TARGET}" or "${LD} -[xX] -r ${TARGET}.tmp -o ${.TARGET}"
as appropriate.
This can prevent inconsistency that could occur between "echo ${COMPILE.*:Q}"
and "${COMPILE.*}", such as the problem in rev 1.226. (There were still
examples of this in .cc.so and .m.so !!!)
Remove `@' from most non-echo rules, so that we can actually see what's
happening. This helps debugging problems, such as that fixed by rev 1.226.
Always remove all possible temp files that might occur because of the above.
Be consistent about ${CC} instead of $(CC)
2003-07-28 08:08:47 +04:00
|
|
|
mv ${.TARGET}.tmp ${.TARGET}
|
2001-04-27 21:04:39 +04:00
|
|
|
.else
|
Overhaul how the .{c,cc,cpp,cxx,C,f,m.S}.{o,po,so} rules are implemented:
only list the (often complicated) ${COMPILE.*} rules once always building
to ${.TARGET}.tmp. Then, depending on whether *OPTS has -g, either
"mv ${.TARGET}.tmp ${.TARGET}" or "${LD} -[xX] -r ${TARGET}.tmp -o ${.TARGET}"
as appropriate.
This can prevent inconsistency that could occur between "echo ${COMPILE.*:Q}"
and "${COMPILE.*}", such as the problem in rev 1.226. (There were still
examples of this in .cc.so and .m.so !!!)
Remove `@' from most non-echo rules, so that we can actually see what's
happening. This helps debugging problems, such as that fixed by rev 1.226.
Always remove all possible temp files that might occur because of the above.
Be consistent about ${CC} instead of $(CC)
2003-07-28 08:08:47 +04:00
|
|
|
${LD} -x -r ${.TARGET}.tmp -o ${.TARGET}
|
|
|
|
rm -f ${.TARGET}.tmp
|
2001-04-27 21:04:39 +04:00
|
|
|
.endif
|
|
|
|
|
|
|
|
.f.po:
|
Overhaul how the .{c,cc,cpp,cxx,C,f,m.S}.{o,po,so} rules are implemented:
only list the (often complicated) ${COMPILE.*} rules once always building
to ${.TARGET}.tmp. Then, depending on whether *OPTS has -g, either
"mv ${.TARGET}.tmp ${.TARGET}" or "${LD} -[xX] -r ${TARGET}.tmp -o ${.TARGET}"
as appropriate.
This can prevent inconsistency that could occur between "echo ${COMPILE.*:Q}"
and "${COMPILE.*}", such as the problem in rev 1.226. (There were still
examples of this in .cc.so and .m.so !!!)
Remove `@' from most non-echo rules, so that we can actually see what's
happening. This helps debugging problems, such as that fixed by rev 1.226.
Always remove all possible temp files that might occur because of the above.
Be consistent about ${CC} instead of $(CC)
2003-07-28 08:08:47 +04:00
|
|
|
${COMPILE.f} -pg ${.IMPSRC} -o ${.TARGET}.tmp
|
2001-04-27 21:04:39 +04:00
|
|
|
.if defined(FOPTS) && !empty(FOPTS:M*-g*)
|
Overhaul how the .{c,cc,cpp,cxx,C,f,m.S}.{o,po,so} rules are implemented:
only list the (often complicated) ${COMPILE.*} rules once always building
to ${.TARGET}.tmp. Then, depending on whether *OPTS has -g, either
"mv ${.TARGET}.tmp ${.TARGET}" or "${LD} -[xX] -r ${TARGET}.tmp -o ${.TARGET}"
as appropriate.
This can prevent inconsistency that could occur between "echo ${COMPILE.*:Q}"
and "${COMPILE.*}", such as the problem in rev 1.226. (There were still
examples of this in .cc.so and .m.so !!!)
Remove `@' from most non-echo rules, so that we can actually see what's
happening. This helps debugging problems, such as that fixed by rev 1.226.
Always remove all possible temp files that might occur because of the above.
Be consistent about ${CC} instead of $(CC)
2003-07-28 08:08:47 +04:00
|
|
|
mv ${.TARGET}.tmp ${.TARGET}
|
2001-04-27 21:04:39 +04:00
|
|
|
.else
|
Overhaul how the .{c,cc,cpp,cxx,C,f,m.S}.{o,po,so} rules are implemented:
only list the (often complicated) ${COMPILE.*} rules once always building
to ${.TARGET}.tmp. Then, depending on whether *OPTS has -g, either
"mv ${.TARGET}.tmp ${.TARGET}" or "${LD} -[xX] -r ${TARGET}.tmp -o ${.TARGET}"
as appropriate.
This can prevent inconsistency that could occur between "echo ${COMPILE.*:Q}"
and "${COMPILE.*}", such as the problem in rev 1.226. (There were still
examples of this in .cc.so and .m.so !!!)
Remove `@' from most non-echo rules, so that we can actually see what's
happening. This helps debugging problems, such as that fixed by rev 1.226.
Always remove all possible temp files that might occur because of the above.
Be consistent about ${CC} instead of $(CC)
2003-07-28 08:08:47 +04:00
|
|
|
${LD} -X -r ${.TARGET}.tmp -o ${.TARGET}
|
|
|
|
rm -f ${.TARGET}.tmp
|
2001-04-27 21:04:39 +04:00
|
|
|
.endif
|
|
|
|
|
|
|
|
.f.so:
|
Overhaul how the .{c,cc,cpp,cxx,C,f,m.S}.{o,po,so} rules are implemented:
only list the (often complicated) ${COMPILE.*} rules once always building
to ${.TARGET}.tmp. Then, depending on whether *OPTS has -g, either
"mv ${.TARGET}.tmp ${.TARGET}" or "${LD} -[xX] -r ${TARGET}.tmp -o ${.TARGET}"
as appropriate.
This can prevent inconsistency that could occur between "echo ${COMPILE.*:Q}"
and "${COMPILE.*}", such as the problem in rev 1.226. (There were still
examples of this in .cc.so and .m.so !!!)
Remove `@' from most non-echo rules, so that we can actually see what's
happening. This helps debugging problems, such as that fixed by rev 1.226.
Always remove all possible temp files that might occur because of the above.
Be consistent about ${CC} instead of $(CC)
2003-07-28 08:08:47 +04:00
|
|
|
${COMPILE.f} ${FPICFLAGS} ${.IMPSRC} -o ${.TARGET}.tmp
|
2001-04-27 21:04:39 +04:00
|
|
|
.if defined(FOPTS) && !empty(FOPTS:M*-g*)
|
Overhaul how the .{c,cc,cpp,cxx,C,f,m.S}.{o,po,so} rules are implemented:
only list the (often complicated) ${COMPILE.*} rules once always building
to ${.TARGET}.tmp. Then, depending on whether *OPTS has -g, either
"mv ${.TARGET}.tmp ${.TARGET}" or "${LD} -[xX] -r ${TARGET}.tmp -o ${.TARGET}"
as appropriate.
This can prevent inconsistency that could occur between "echo ${COMPILE.*:Q}"
and "${COMPILE.*}", such as the problem in rev 1.226. (There were still
examples of this in .cc.so and .m.so !!!)
Remove `@' from most non-echo rules, so that we can actually see what's
happening. This helps debugging problems, such as that fixed by rev 1.226.
Always remove all possible temp files that might occur because of the above.
Be consistent about ${CC} instead of $(CC)
2003-07-28 08:08:47 +04:00
|
|
|
mv ${.TARGET}.tmp ${.TARGET}
|
2001-04-27 21:04:39 +04:00
|
|
|
.else
|
Overhaul how the .{c,cc,cpp,cxx,C,f,m.S}.{o,po,so} rules are implemented:
only list the (often complicated) ${COMPILE.*} rules once always building
to ${.TARGET}.tmp. Then, depending on whether *OPTS has -g, either
"mv ${.TARGET}.tmp ${.TARGET}" or "${LD} -[xX] -r ${TARGET}.tmp -o ${.TARGET}"
as appropriate.
This can prevent inconsistency that could occur between "echo ${COMPILE.*:Q}"
and "${COMPILE.*}", such as the problem in rev 1.226. (There were still
examples of this in .cc.so and .m.so !!!)
Remove `@' from most non-echo rules, so that we can actually see what's
happening. This helps debugging problems, such as that fixed by rev 1.226.
Always remove all possible temp files that might occur because of the above.
Be consistent about ${CC} instead of $(CC)
2003-07-28 08:08:47 +04:00
|
|
|
${LD} -x -r ${.TARGET}.tmp -o ${.TARGET}
|
|
|
|
rm -f ${.TARGET}.tmp
|
2001-04-27 21:04:39 +04:00
|
|
|
.endif
|
|
|
|
|
|
|
|
.f.ln:
|
2003-05-26 16:38:59 +04:00
|
|
|
@echo Skipping lint for Fortran libraries.
|
2001-04-27 21:04:39 +04:00
|
|
|
|
1997-10-28 15:40:16 +03:00
|
|
|
.m.o:
|
Overhaul how the .{c,cc,cpp,cxx,C,f,m.S}.{o,po,so} rules are implemented:
only list the (often complicated) ${COMPILE.*} rules once always building
to ${.TARGET}.tmp. Then, depending on whether *OPTS has -g, either
"mv ${.TARGET}.tmp ${.TARGET}" or "${LD} -[xX] -r ${TARGET}.tmp -o ${.TARGET}"
as appropriate.
This can prevent inconsistency that could occur between "echo ${COMPILE.*:Q}"
and "${COMPILE.*}", such as the problem in rev 1.226. (There were still
examples of this in .cc.so and .m.so !!!)
Remove `@' from most non-echo rules, so that we can actually see what's
happening. This helps debugging problems, such as that fixed by rev 1.226.
Always remove all possible temp files that might occur because of the above.
Be consistent about ${CC} instead of $(CC)
2003-07-28 08:08:47 +04:00
|
|
|
${COMPILE.m} ${.IMPSRC} -o ${.TARGET}.tmp
|
1999-06-07 05:37:00 +04:00
|
|
|
.if defined(OBJCFLAGS) && !empty(OBJCFLAGS:M*-g*)
|
Overhaul how the .{c,cc,cpp,cxx,C,f,m.S}.{o,po,so} rules are implemented:
only list the (often complicated) ${COMPILE.*} rules once always building
to ${.TARGET}.tmp. Then, depending on whether *OPTS has -g, either
"mv ${.TARGET}.tmp ${.TARGET}" or "${LD} -[xX] -r ${TARGET}.tmp -o ${.TARGET}"
as appropriate.
This can prevent inconsistency that could occur between "echo ${COMPILE.*:Q}"
and "${COMPILE.*}", such as the problem in rev 1.226. (There were still
examples of this in .cc.so and .m.so !!!)
Remove `@' from most non-echo rules, so that we can actually see what's
happening. This helps debugging problems, such as that fixed by rev 1.226.
Always remove all possible temp files that might occur because of the above.
Be consistent about ${CC} instead of $(CC)
2003-07-28 08:08:47 +04:00
|
|
|
mv ${.TARGET}.tmp ${.TARGET}
|
1999-06-07 05:37:00 +04:00
|
|
|
.else
|
Overhaul how the .{c,cc,cpp,cxx,C,f,m.S}.{o,po,so} rules are implemented:
only list the (often complicated) ${COMPILE.*} rules once always building
to ${.TARGET}.tmp. Then, depending on whether *OPTS has -g, either
"mv ${.TARGET}.tmp ${.TARGET}" or "${LD} -[xX] -r ${TARGET}.tmp -o ${.TARGET}"
as appropriate.
This can prevent inconsistency that could occur between "echo ${COMPILE.*:Q}"
and "${COMPILE.*}", such as the problem in rev 1.226. (There were still
examples of this in .cc.so and .m.so !!!)
Remove `@' from most non-echo rules, so that we can actually see what's
happening. This helps debugging problems, such as that fixed by rev 1.226.
Always remove all possible temp files that might occur because of the above.
Be consistent about ${CC} instead of $(CC)
2003-07-28 08:08:47 +04:00
|
|
|
${LD} -x -r ${.TARGET}.tmp -o ${.TARGET}
|
|
|
|
rm -f ${.TARGET}.tmp
|
1999-06-07 05:37:00 +04:00
|
|
|
.endif
|
1997-10-28 15:40:16 +03:00
|
|
|
|
|
|
|
.m.po:
|
Overhaul how the .{c,cc,cpp,cxx,C,f,m.S}.{o,po,so} rules are implemented:
only list the (often complicated) ${COMPILE.*} rules once always building
to ${.TARGET}.tmp. Then, depending on whether *OPTS has -g, either
"mv ${.TARGET}.tmp ${.TARGET}" or "${LD} -[xX] -r ${TARGET}.tmp -o ${.TARGET}"
as appropriate.
This can prevent inconsistency that could occur between "echo ${COMPILE.*:Q}"
and "${COMPILE.*}", such as the problem in rev 1.226. (There were still
examples of this in .cc.so and .m.so !!!)
Remove `@' from most non-echo rules, so that we can actually see what's
happening. This helps debugging problems, such as that fixed by rev 1.226.
Always remove all possible temp files that might occur because of the above.
Be consistent about ${CC} instead of $(CC)
2003-07-28 08:08:47 +04:00
|
|
|
${COMPILE.m} -pg ${.IMPSRC} -o ${.TARGET}.tmp
|
1999-06-07 05:37:00 +04:00
|
|
|
.if defined(OBJCFLAGS) && !empty(OBJCFLAGS:M*-g*)
|
Overhaul how the .{c,cc,cpp,cxx,C,f,m.S}.{o,po,so} rules are implemented:
only list the (often complicated) ${COMPILE.*} rules once always building
to ${.TARGET}.tmp. Then, depending on whether *OPTS has -g, either
"mv ${.TARGET}.tmp ${.TARGET}" or "${LD} -[xX] -r ${TARGET}.tmp -o ${.TARGET}"
as appropriate.
This can prevent inconsistency that could occur between "echo ${COMPILE.*:Q}"
and "${COMPILE.*}", such as the problem in rev 1.226. (There were still
examples of this in .cc.so and .m.so !!!)
Remove `@' from most non-echo rules, so that we can actually see what's
happening. This helps debugging problems, such as that fixed by rev 1.226.
Always remove all possible temp files that might occur because of the above.
Be consistent about ${CC} instead of $(CC)
2003-07-28 08:08:47 +04:00
|
|
|
mv ${.TARGET}.tmp ${.TARGET}
|
1999-06-07 05:37:00 +04:00
|
|
|
.else
|
Overhaul how the .{c,cc,cpp,cxx,C,f,m.S}.{o,po,so} rules are implemented:
only list the (often complicated) ${COMPILE.*} rules once always building
to ${.TARGET}.tmp. Then, depending on whether *OPTS has -g, either
"mv ${.TARGET}.tmp ${.TARGET}" or "${LD} -[xX] -r ${TARGET}.tmp -o ${.TARGET}"
as appropriate.
This can prevent inconsistency that could occur between "echo ${COMPILE.*:Q}"
and "${COMPILE.*}", such as the problem in rev 1.226. (There were still
examples of this in .cc.so and .m.so !!!)
Remove `@' from most non-echo rules, so that we can actually see what's
happening. This helps debugging problems, such as that fixed by rev 1.226.
Always remove all possible temp files that might occur because of the above.
Be consistent about ${CC} instead of $(CC)
2003-07-28 08:08:47 +04:00
|
|
|
${LD} -X -r ${.TARGET}.tmp -o ${.TARGET}
|
|
|
|
rm -f ${.TARGET}.tmp
|
1999-06-07 05:37:00 +04:00
|
|
|
.endif
|
1997-10-28 15:40:16 +03:00
|
|
|
|
|
|
|
.m.so:
|
Overhaul how the .{c,cc,cpp,cxx,C,f,m.S}.{o,po,so} rules are implemented:
only list the (often complicated) ${COMPILE.*} rules once always building
to ${.TARGET}.tmp. Then, depending on whether *OPTS has -g, either
"mv ${.TARGET}.tmp ${.TARGET}" or "${LD} -[xX] -r ${TARGET}.tmp -o ${.TARGET}"
as appropriate.
This can prevent inconsistency that could occur between "echo ${COMPILE.*:Q}"
and "${COMPILE.*}", such as the problem in rev 1.226. (There were still
examples of this in .cc.so and .m.so !!!)
Remove `@' from most non-echo rules, so that we can actually see what's
happening. This helps debugging problems, such as that fixed by rev 1.226.
Always remove all possible temp files that might occur because of the above.
Be consistent about ${CC} instead of $(CC)
2003-07-28 08:08:47 +04:00
|
|
|
${COMPILE.m} ${CSHLIBFLAGS} ${.IMPSRC} -o ${.TARGET}.tmp
|
1999-06-07 05:37:00 +04:00
|
|
|
.if defined(OBJCFLAGS) && !empty(OBJCFLAGS:M*-g*)
|
Overhaul how the .{c,cc,cpp,cxx,C,f,m.S}.{o,po,so} rules are implemented:
only list the (often complicated) ${COMPILE.*} rules once always building
to ${.TARGET}.tmp. Then, depending on whether *OPTS has -g, either
"mv ${.TARGET}.tmp ${.TARGET}" or "${LD} -[xX] -r ${TARGET}.tmp -o ${.TARGET}"
as appropriate.
This can prevent inconsistency that could occur between "echo ${COMPILE.*:Q}"
and "${COMPILE.*}", such as the problem in rev 1.226. (There were still
examples of this in .cc.so and .m.so !!!)
Remove `@' from most non-echo rules, so that we can actually see what's
happening. This helps debugging problems, such as that fixed by rev 1.226.
Always remove all possible temp files that might occur because of the above.
Be consistent about ${CC} instead of $(CC)
2003-07-28 08:08:47 +04:00
|
|
|
mv ${.TARGET}.tmp ${.TARGET}
|
1999-06-07 05:37:00 +04:00
|
|
|
.else
|
Overhaul how the .{c,cc,cpp,cxx,C,f,m.S}.{o,po,so} rules are implemented:
only list the (often complicated) ${COMPILE.*} rules once always building
to ${.TARGET}.tmp. Then, depending on whether *OPTS has -g, either
"mv ${.TARGET}.tmp ${.TARGET}" or "${LD} -[xX] -r ${TARGET}.tmp -o ${.TARGET}"
as appropriate.
This can prevent inconsistency that could occur between "echo ${COMPILE.*:Q}"
and "${COMPILE.*}", such as the problem in rev 1.226. (There were still
examples of this in .cc.so and .m.so !!!)
Remove `@' from most non-echo rules, so that we can actually see what's
happening. This helps debugging problems, such as that fixed by rev 1.226.
Always remove all possible temp files that might occur because of the above.
Be consistent about ${CC} instead of $(CC)
2003-07-28 08:08:47 +04:00
|
|
|
${LD} -x -r ${.TARGET}.tmp -o ${.TARGET}
|
|
|
|
rm -f ${.TARGET}.tmp
|
1999-06-07 05:37:00 +04:00
|
|
|
.endif
|
1997-10-28 15:40:16 +03:00
|
|
|
|
1993-12-04 04:28:39 +03:00
|
|
|
.S.o .s.o:
|
Overhaul how the .{c,cc,cpp,cxx,C,f,m.S}.{o,po,so} rules are implemented:
only list the (often complicated) ${COMPILE.*} rules once always building
to ${.TARGET}.tmp. Then, depending on whether *OPTS has -g, either
"mv ${.TARGET}.tmp ${.TARGET}" or "${LD} -[xX] -r ${TARGET}.tmp -o ${.TARGET}"
as appropriate.
This can prevent inconsistency that could occur between "echo ${COMPILE.*:Q}"
and "${COMPILE.*}", such as the problem in rev 1.226. (There were still
examples of this in .cc.so and .m.so !!!)
Remove `@' from most non-echo rules, so that we can actually see what's
happening. This helps debugging problems, such as that fixed by rev 1.226.
Always remove all possible temp files that might occur because of the above.
Be consistent about ${CC} instead of $(CC)
2003-07-28 08:08:47 +04:00
|
|
|
${COMPILE.S} ${CFLAGS:M-[ID]*} ${AINC} ${.IMPSRC} -o ${.TARGET}.tmp
|
|
|
|
${LD} -x -r ${.TARGET}.tmp -o ${.TARGET}
|
|
|
|
rm -f ${.TARGET}.tmp
|
1993-03-21 12:45:37 +03:00
|
|
|
|
1993-12-04 04:28:39 +03:00
|
|
|
.S.po .s.po:
|
Overhaul how the .{c,cc,cpp,cxx,C,f,m.S}.{o,po,so} rules are implemented:
only list the (often complicated) ${COMPILE.*} rules once always building
to ${.TARGET}.tmp. Then, depending on whether *OPTS has -g, either
"mv ${.TARGET}.tmp ${.TARGET}" or "${LD} -[xX] -r ${TARGET}.tmp -o ${.TARGET}"
as appropriate.
This can prevent inconsistency that could occur between "echo ${COMPILE.*:Q}"
and "${COMPILE.*}", such as the problem in rev 1.226. (There were still
examples of this in .cc.so and .m.so !!!)
Remove `@' from most non-echo rules, so that we can actually see what's
happening. This helps debugging problems, such as that fixed by rev 1.226.
Always remove all possible temp files that might occur because of the above.
Be consistent about ${CC} instead of $(CC)
2003-07-28 08:08:47 +04:00
|
|
|
${COMPILE.S} -DGPROF -DPROF ${CFLAGS:M-[ID]*} ${AINC} ${.IMPSRC} -o ${.TARGET}.tmp
|
|
|
|
${LD} -X -r ${.TARGET}.tmp -o ${.TARGET}
|
|
|
|
rm -f ${.TARGET}.tmp
|
1993-03-21 12:45:37 +03:00
|
|
|
|
1993-12-04 04:28:39 +03:00
|
|
|
.S.so .s.so:
|
Overhaul how the .{c,cc,cpp,cxx,C,f,m.S}.{o,po,so} rules are implemented:
only list the (often complicated) ${COMPILE.*} rules once always building
to ${.TARGET}.tmp. Then, depending on whether *OPTS has -g, either
"mv ${.TARGET}.tmp ${.TARGET}" or "${LD} -[xX] -r ${TARGET}.tmp -o ${.TARGET}"
as appropriate.
This can prevent inconsistency that could occur between "echo ${COMPILE.*:Q}"
and "${COMPILE.*}", such as the problem in rev 1.226. (There were still
examples of this in .cc.so and .m.so !!!)
Remove `@' from most non-echo rules, so that we can actually see what's
happening. This helps debugging problems, such as that fixed by rev 1.226.
Always remove all possible temp files that might occur because of the above.
Be consistent about ${CC} instead of $(CC)
2003-07-28 08:08:47 +04:00
|
|
|
${COMPILE.S} ${CAPICFLAGS} ${CFLAGS:M-[ID]*} ${AINC} ${.IMPSRC} -o ${.TARGET}.tmp
|
|
|
|
${LD} -x -r ${.TARGET}.tmp -o ${.TARGET}
|
|
|
|
rm -f ${.TARGET}.tmp
|
1993-09-29 04:02:21 +03:00
|
|
|
|
2003-04-21 01:57:17 +04:00
|
|
|
.if defined(LIB)
|
2003-09-13 23:08:26 +04:00
|
|
|
.if (${MKPIC} == "no" || (defined(LDSTATIC) && ${LDSTATIC} != "") \
|
|
|
|
|| ${MKLINKLIB} != "no") && ${MKSTATICLIB} != "no"
|
1998-04-09 04:51:06 +04:00
|
|
|
_LIBS=lib${LIB}.a
|
|
|
|
.else
|
|
|
|
_LIBS=
|
|
|
|
.endif
|
1995-06-24 12:27:37 +04:00
|
|
|
|
2000-05-03 19:15:50 +04:00
|
|
|
OBJS+=${SRCS:N*.h:N*.sh:R:S/$/.o/g}
|
1999-09-12 04:31:34 +04:00
|
|
|
|
1999-02-12 15:38:44 +03:00
|
|
|
.if ${MKPROFILE} != "no"
|
1998-04-09 04:51:06 +04:00
|
|
|
_LIBS+=lib${LIB}_p.a
|
2000-05-03 19:15:50 +04:00
|
|
|
POBJS+=${OBJS:.o=.po}
|
1993-03-21 12:45:37 +03:00
|
|
|
.endif
|
|
|
|
|
1999-02-12 04:10:06 +03:00
|
|
|
.if ${MKPIC} != "no"
|
1999-11-28 07:50:41 +03:00
|
|
|
.if ${MKPICLIB} == "no"
|
2002-07-20 12:50:10 +04:00
|
|
|
.if ${MKSHLIBOBJS} != "no"
|
|
|
|
# make _pic.a, which isn't really pic,
|
|
|
|
# since it's needed for making shared lib.
|
|
|
|
# but don't install it.
|
|
|
|
SOLIB=lib${LIB}_pic.a
|
|
|
|
SOBJS+=${OBJS:.o=.so}
|
|
|
|
.else
|
1999-11-28 07:50:41 +03:00
|
|
|
SOLIB=lib${LIB}.a
|
2002-07-20 12:50:10 +04:00
|
|
|
.endif
|
1999-11-28 07:50:41 +03:00
|
|
|
.else
|
|
|
|
SOLIB=lib${LIB}_pic.a
|
|
|
|
_LIBS+=${SOLIB}
|
2000-05-03 19:15:50 +04:00
|
|
|
SOBJS+=${OBJS:.o=.so}
|
1999-11-28 07:50:41 +03:00
|
|
|
.endif
|
2000-07-04 01:08:55 +04:00
|
|
|
.if defined(SHLIB_FULLVERSION)
|
|
|
|
_LIBS+=lib${LIB}.so.${SHLIB_FULLVERSION}
|
1993-11-03 01:02:12 +03:00
|
|
|
.endif
|
1993-09-29 04:02:21 +03:00
|
|
|
.endif
|
|
|
|
|
1999-09-12 04:31:34 +04:00
|
|
|
LOBJS+=${LSRCS:.c=.ln} ${SRCS:M*.c:.c=.ln}
|
2001-04-27 21:04:39 +04:00
|
|
|
.if ${MKLINT} != "no" && ${MKLINKLIB} != "no" && !empty(LOBJS)
|
|
|
|
_LIBS+=llib-l${LIB}.ln
|
1993-09-29 04:02:21 +03:00
|
|
|
.endif
|
|
|
|
|
2003-09-13 23:08:26 +04:00
|
|
|
ALLOBJS=
|
|
|
|
.if (${MKPIC} == "no" || (defined(LDSTATIC) && ${LDSTATIC} != "") \
|
|
|
|
|| ${MKLINKLIB} != "no") && ${MKSTATICLIB} != "no"
|
|
|
|
ALLOBJS+=${OBJS}
|
2001-04-27 21:04:39 +04:00
|
|
|
.endif
|
2003-09-13 23:08:26 +04:00
|
|
|
ALLOBJS+=${POBJS} ${SOBJS}
|
2001-04-27 21:04:39 +04:00
|
|
|
.if ${MKLINT} != "no" && ${MKLINKLIB} != "no" && !empty(LOBJS)
|
|
|
|
ALLOBJS+=${LOBJS}
|
2000-05-03 19:15:50 +04:00
|
|
|
.endif
|
2003-04-22 16:55:26 +04:00
|
|
|
.else
|
|
|
|
LOBJS=
|
|
|
|
SOBJS=
|
|
|
|
.endif
|
2001-10-19 19:55:52 +04:00
|
|
|
|
2001-11-15 02:06:26 +03:00
|
|
|
.NOPATH: ${ALLOBJS} ${_LIBS} ${SRCS:M*.[ly]:C/\..$/.c/} ${YHEADER:D${SRCS:M*.y:.y=.h}}
|
1999-09-12 04:31:34 +04:00
|
|
|
|
2000-01-22 22:31:00 +03:00
|
|
|
realall: ${SRCS} ${ALLOBJS:O} ${_LIBS}
|
1993-03-21 12:45:37 +03:00
|
|
|
|
1997-03-25 02:19:12 +03:00
|
|
|
__archivebuild: .USE
|
1997-03-25 00:54:12 +03:00
|
|
|
@rm -f ${.TARGET}
|
Overhaul how the .{c,cc,cpp,cxx,C,f,m.S}.{o,po,so} rules are implemented:
only list the (often complicated) ${COMPILE.*} rules once always building
to ${.TARGET}.tmp. Then, depending on whether *OPTS has -g, either
"mv ${.TARGET}.tmp ${.TARGET}" or "${LD} -[xX] -r ${TARGET}.tmp -o ${.TARGET}"
as appropriate.
This can prevent inconsistency that could occur between "echo ${COMPILE.*:Q}"
and "${COMPILE.*}", such as the problem in rev 1.226. (There were still
examples of this in .cc.so and .m.so !!!)
Remove `@' from most non-echo rules, so that we can actually see what's
happening. This helps debugging problems, such as that fixed by rev 1.226.
Always remove all possible temp files that might occur because of the above.
Be consistent about ${CC} instead of $(CC)
2003-07-28 08:08:47 +04:00
|
|
|
${AR} cq ${.TARGET} `NM=${NM} ${LORDER} ${.ALLSRC:M*o} | ${TSORT}`
|
1997-03-25 00:54:12 +03:00
|
|
|
${RANLIB} ${.TARGET}
|
|
|
|
|
|
|
|
__archiveinstall: .USE
|
2002-03-19 17:39:22 +03:00
|
|
|
${INSTALL_FILE} -o ${LIBOWN} -g ${LIBGRP} -m ${LIBMODE} \
|
2002-10-22 22:48:27 +04:00
|
|
|
${UPDATE:D:U-a "${RANLIB} -t"} ${SYSPKGTAG} ${.ALLSRC} ${.TARGET}
|
1997-03-25 00:54:12 +03:00
|
|
|
|
2002-02-12 00:14:58 +03:00
|
|
|
__archivesymlinkpic: .USE
|
2002-10-22 22:48:27 +04:00
|
|
|
${INSTALL_SYMLINK} ${SYSPKGTAG} ${.ALLSRC} ${.TARGET}
|
2002-02-12 00:14:58 +03:00
|
|
|
|
2003-07-29 03:54:24 +04:00
|
|
|
DPSRCS+= ${SRCS:M*.l:.l=.c} ${SRCS:M*.y:.y=.c}
|
2003-08-01 21:03:41 +04:00
|
|
|
CLEANFILES+= ${SRCS:M*.l:.l=.c} ${SRCS:M*.y:.y=.c}
|
|
|
|
CLEANFILES+= ${YHEADER:D${SRCS:M*.y:.y=.h}}
|
|
|
|
|
|
|
|
${OBJS} ${POBJS} ${SOBJS} ${LOBJS}: ${DPSRCS}
|
1997-05-09 17:25:46 +04:00
|
|
|
|
1997-03-25 00:54:12 +03:00
|
|
|
lib${LIB}.a:: ${OBJS} __archivebuild
|
1993-03-21 12:45:37 +03:00
|
|
|
@echo building standard ${LIB} library
|
|
|
|
|
1997-03-25 00:54:12 +03:00
|
|
|
lib${LIB}_p.a:: ${POBJS} __archivebuild
|
1993-03-21 12:45:37 +03:00
|
|
|
@echo building profiled ${LIB} library
|
|
|
|
|
1997-03-25 00:54:12 +03:00
|
|
|
lib${LIB}_pic.a:: ${SOBJS} __archivebuild
|
1993-09-29 04:02:21 +03:00
|
|
|
@echo building shared object ${LIB} library
|
|
|
|
|
2000-07-04 01:08:55 +04:00
|
|
|
lib${LIB}.so.${SHLIB_FULLVERSION}: ${SOLIB} ${DPADD} \
|
1997-03-23 03:52:20 +03:00
|
|
|
${SHLIB_LDSTARTFILE} ${SHLIB_LDENDFILE}
|
2000-07-04 01:08:55 +04:00
|
|
|
@echo building shared ${LIB} library \(version ${SHLIB_FULLVERSION}\)
|
|
|
|
@rm -f lib${LIB}.so.${SHLIB_FULLVERSION}
|
1999-03-30 13:30:43 +04:00
|
|
|
.if defined(DESTDIR)
|
Overhaul how the .{c,cc,cpp,cxx,C,f,m.S}.{o,po,so} rules are implemented:
only list the (often complicated) ${COMPILE.*} rules once always building
to ${.TARGET}.tmp. Then, depending on whether *OPTS has -g, either
"mv ${.TARGET}.tmp ${.TARGET}" or "${LD} -[xX] -r ${TARGET}.tmp -o ${.TARGET}"
as appropriate.
This can prevent inconsistency that could occur between "echo ${COMPILE.*:Q}"
and "${COMPILE.*}", such as the problem in rev 1.226. (There were still
examples of this in .cc.so and .m.so !!!)
Remove `@' from most non-echo rules, so that we can actually see what's
happening. This helps debugging problems, such as that fixed by rev 1.226.
Always remove all possible temp files that might occur because of the above.
Be consistent about ${CC} instead of $(CC)
2003-07-28 08:08:47 +04:00
|
|
|
${CC} -Wl,-nostdlib -B${_GCC_CRTDIR}/ -B${DESTDIR}/usr/lib/ \
|
2003-08-24 13:35:49 +04:00
|
|
|
-Wl,-x -shared ${SHLIB_SHFLAGS} ${LDFLAGS} -o ${.TARGET} \
|
2003-06-27 21:27:11 +04:00
|
|
|
-Wl,--whole-archive ${SOLIB} \
|
|
|
|
-Wl,--no-whole-archive ${LDADD} \
|
|
|
|
-L${_GCC_LIBGCCDIR} -L${DESTDIR}${_LIBSODIR} -L${DESTDIR}${LIBDIR} \
|
|
|
|
-R${_LIBSODIR} -R${LIBDIR}
|
1999-03-30 13:30:43 +04:00
|
|
|
.else
|
2003-08-24 13:35:49 +04:00
|
|
|
${CC} -Wl,-x -shared ${SHLIB_SHFLAGS} ${LDFLAGS} -o ${.TARGET} \
|
2003-06-27 21:27:11 +04:00
|
|
|
-Wl,--whole-archive ${SOLIB} -Wl,--no-whole-archive ${LDADD}
|
1999-03-30 13:30:43 +04:00
|
|
|
.endif
|
1999-02-12 04:10:06 +03:00
|
|
|
.if ${OBJECT_FMT} == "ELF"
|
2001-12-28 04:40:50 +03:00
|
|
|
# We don't use INSTALL_SYMLINK here because this is just
|
|
|
|
# happening inside the build directory/objdir. XXX Why does
|
|
|
|
# this spend so much effort on libraries that aren't live??? XXX
|
2000-12-06 01:12:37 +03:00
|
|
|
ln -sf lib${LIB}.so.${SHLIB_FULLVERSION} lib${LIB}.so.${SHLIB_MAJOR}.tmp
|
|
|
|
mv -f lib${LIB}.so.${SHLIB_MAJOR}.tmp lib${LIB}.so.${SHLIB_MAJOR}
|
|
|
|
ln -sf lib${LIB}.so.${SHLIB_FULLVERSION} lib${LIB}.so.tmp
|
|
|
|
mv -f lib${LIB}.so.tmp lib${LIB}.so
|
1998-04-15 06:39:53 +04:00
|
|
|
.endif
|
1993-11-03 01:02:12 +03:00
|
|
|
|
2001-04-27 21:04:39 +04:00
|
|
|
.if !empty(LOBJS)
|
1997-05-09 17:25:46 +04:00
|
|
|
LLIBS?= -lc
|
1995-06-24 12:27:37 +04:00
|
|
|
llib-l${LIB}.ln: ${LOBJS}
|
|
|
|
@echo building llib-l${LIB}.ln
|
|
|
|
@rm -f llib-l${LIB}.ln
|
2002-09-14 20:56:10 +04:00
|
|
|
.if defined(DESTDIR)
|
Overhaul how the .{c,cc,cpp,cxx,C,f,m.S}.{o,po,so} rules are implemented:
only list the (often complicated) ${COMPILE.*} rules once always building
to ${.TARGET}.tmp. Then, depending on whether *OPTS has -g, either
"mv ${.TARGET}.tmp ${.TARGET}" or "${LD} -[xX] -r ${TARGET}.tmp -o ${.TARGET}"
as appropriate.
This can prevent inconsistency that could occur between "echo ${COMPILE.*:Q}"
and "${COMPILE.*}", such as the problem in rev 1.226. (There were still
examples of this in .cc.so and .m.so !!!)
Remove `@' from most non-echo rules, so that we can actually see what's
happening. This helps debugging problems, such as that fixed by rev 1.226.
Always remove all possible temp files that might occur because of the above.
Be consistent about ${CC} instead of $(CC)
2003-07-28 08:08:47 +04:00
|
|
|
${LINT} -C${LIB} ${.ALLSRC} -L${DESTDIR}/usr/libdata ${LLIBS}
|
2002-09-14 20:56:10 +04:00
|
|
|
.else
|
Overhaul how the .{c,cc,cpp,cxx,C,f,m.S}.{o,po,so} rules are implemented:
only list the (often complicated) ${COMPILE.*} rules once always building
to ${.TARGET}.tmp. Then, depending on whether *OPTS has -g, either
"mv ${.TARGET}.tmp ${.TARGET}" or "${LD} -[xX] -r ${TARGET}.tmp -o ${.TARGET}"
as appropriate.
This can prevent inconsistency that could occur between "echo ${COMPILE.*:Q}"
and "${COMPILE.*}", such as the problem in rev 1.226. (There were still
examples of this in .cc.so and .m.so !!!)
Remove `@' from most non-echo rules, so that we can actually see what's
happening. This helps debugging problems, such as that fixed by rev 1.226.
Always remove all possible temp files that might occur because of the above.
Be consistent about ${CC} instead of $(CC)
2003-07-28 08:08:47 +04:00
|
|
|
${LINT} -C${LIB} ${.ALLSRC} ${LLIBS}
|
2001-04-27 21:04:39 +04:00
|
|
|
.endif
|
2002-09-14 20:56:10 +04:00
|
|
|
.endif
|
1993-03-21 12:45:37 +03:00
|
|
|
|
1997-01-22 04:34:11 +03:00
|
|
|
cleanlib:
|
1994-03-24 19:11:38 +03:00
|
|
|
rm -f a.out [Ee]rrs mklog core *.core ${CLEANFILES}
|
1995-06-26 04:19:44 +04:00
|
|
|
rm -f lib${LIB}.a ${OBJS}
|
|
|
|
rm -f lib${LIB}_p.a ${POBJS}
|
1998-04-15 06:39:53 +04:00
|
|
|
rm -f lib${LIB}_pic.a lib${LIB}.so.* lib${LIB}.so ${SOBJS}
|
Overhaul how the .{c,cc,cpp,cxx,C,f,m.S}.{o,po,so} rules are implemented:
only list the (often complicated) ${COMPILE.*} rules once always building
to ${.TARGET}.tmp. Then, depending on whether *OPTS has -g, either
"mv ${.TARGET}.tmp ${.TARGET}" or "${LD} -[xX] -r ${TARGET}.tmp -o ${.TARGET}"
as appropriate.
This can prevent inconsistency that could occur between "echo ${COMPILE.*:Q}"
and "${COMPILE.*}", such as the problem in rev 1.226. (There were still
examples of this in .cc.so and .m.so !!!)
Remove `@' from most non-echo rules, so that we can actually see what's
happening. This helps debugging problems, such as that fixed by rev 1.226.
Always remove all possible temp files that might occur because of the above.
Be consistent about ${CC} instead of $(CC)
2003-07-28 08:08:47 +04:00
|
|
|
rm -f ${OBJS:=.tmp} ${POBJS:=.tmp} ${SOBJS:=.tmp}
|
1995-06-26 04:19:44 +04:00
|
|
|
rm -f llib-l${LIB}.ln ${LOBJS}
|
1993-03-21 12:45:37 +03:00
|
|
|
|
1993-08-16 05:41:01 +04:00
|
|
|
.if defined(SRCS)
|
1995-09-27 04:15:09 +03:00
|
|
|
afterdepend: .depend
|
2003-06-11 08:56:58 +04:00
|
|
|
@(TMP=/tmp/_depend$$$$; trap 'rm -f $$TMP ; exit 1' 1 2 3 13 15; \
|
1996-12-20 19:36:56 +03:00
|
|
|
sed -e 's/^\([^\.]*\).o[ ]*:/\1.o \1.po \1.so \1.ln:/' \
|
2003-05-27 23:32:18 +04:00
|
|
|
< .depend > $$TMP && \
|
1993-03-21 12:45:37 +03:00
|
|
|
mv $$TMP .depend)
|
1993-08-16 05:41:01 +04:00
|
|
|
.endif
|
1993-03-21 12:45:37 +03:00
|
|
|
|
1997-05-07 19:53:28 +04:00
|
|
|
.if !target(libinstall)
|
1999-02-12 04:10:06 +03:00
|
|
|
# Make sure it gets defined, in case MKPIC==no && MKLINKLIB==no
|
1998-09-14 03:25:18 +04:00
|
|
|
libinstall::
|
|
|
|
|
2003-09-13 23:08:26 +04:00
|
|
|
.if ${MKLINKLIB} != "no" && ${MKSTATICLIB} != "no"
|
1997-03-25 00:54:12 +03:00
|
|
|
libinstall:: ${DESTDIR}${LIBDIR}/lib${LIB}.a
|
2000-06-06 13:22:00 +04:00
|
|
|
.PRECIOUS: ${DESTDIR}${LIBDIR}/lib${LIB}.a
|
2002-02-12 00:14:58 +03:00
|
|
|
|
1997-03-25 00:54:12 +03:00
|
|
|
.if !defined(UPDATE)
|
2002-02-12 00:14:58 +03:00
|
|
|
.if !defined(BUILD) && !make(all) && !make(lib${LIB}.a)
|
|
|
|
${DESTDIR}${LIBDIR}/lib${LIB}.a! .MADE
|
1997-03-25 00:54:12 +03:00
|
|
|
.endif
|
2002-02-12 00:14:58 +03:00
|
|
|
${DESTDIR}${LIBDIR}/lib${LIB}.a! lib${LIB}.a __archiveinstall
|
|
|
|
.else
|
1999-09-05 01:48:33 +04:00
|
|
|
.if !defined(BUILD) && !make(all) && !make(lib${LIB}.a)
|
1997-03-25 00:54:12 +03:00
|
|
|
${DESTDIR}${LIBDIR}/lib${LIB}.a: .MADE
|
|
|
|
.endif
|
|
|
|
${DESTDIR}${LIBDIR}/lib${LIB}.a: lib${LIB}.a __archiveinstall
|
1998-04-09 04:51:06 +04:00
|
|
|
.endif
|
2002-02-12 00:14:58 +03:00
|
|
|
.endif
|
1997-03-25 00:54:12 +03:00
|
|
|
|
1999-02-12 15:38:44 +03:00
|
|
|
.if ${MKPROFILE} != "no"
|
1997-03-25 00:54:12 +03:00
|
|
|
libinstall:: ${DESTDIR}${LIBDIR}/lib${LIB}_p.a
|
2000-06-06 13:22:00 +04:00
|
|
|
.PRECIOUS: ${DESTDIR}${LIBDIR}/lib${LIB}_p.a
|
2002-02-12 00:14:58 +03:00
|
|
|
|
1997-03-25 00:54:12 +03:00
|
|
|
.if !defined(UPDATE)
|
2002-02-12 00:14:58 +03:00
|
|
|
.if !defined(BUILD) && !make(all) && !make(lib${LIB}_p.a)
|
|
|
|
${DESTDIR}${LIBDIR}/lib${LIB}_p.a! .MADE
|
1993-05-26 15:48:40 +04:00
|
|
|
.endif
|
2002-02-12 00:14:58 +03:00
|
|
|
${DESTDIR}${LIBDIR}/lib${LIB}_p.a! lib${LIB}_p.a __archiveinstall
|
|
|
|
.else
|
1999-09-05 01:48:33 +04:00
|
|
|
.if !defined(BUILD) && !make(all) && !make(lib${LIB}_p.a)
|
1997-03-25 00:54:12 +03:00
|
|
|
${DESTDIR}${LIBDIR}/lib${LIB}_p.a: .MADE
|
|
|
|
.endif
|
|
|
|
${DESTDIR}${LIBDIR}/lib${LIB}_p.a: lib${LIB}_p.a __archiveinstall
|
|
|
|
.endif
|
2002-02-12 00:14:58 +03:00
|
|
|
.endif
|
1997-03-25 00:54:12 +03:00
|
|
|
|
1999-02-12 15:38:44 +03:00
|
|
|
.if ${MKPIC} != "no" && ${MKPICINSTALL} != "no"
|
1997-03-25 00:54:12 +03:00
|
|
|
libinstall:: ${DESTDIR}${LIBDIR}/lib${LIB}_pic.a
|
2000-06-06 13:22:00 +04:00
|
|
|
.PRECIOUS: ${DESTDIR}${LIBDIR}/lib${LIB}_pic.a
|
2002-02-12 00:14:58 +03:00
|
|
|
|
1997-03-25 00:54:12 +03:00
|
|
|
.if !defined(UPDATE)
|
2002-02-12 00:14:58 +03:00
|
|
|
.if !defined(BUILD) && !make(all) && !make(lib${LIB}_pic.a)
|
|
|
|
${DESTDIR}${LIBDIR}/lib${LIB}_pic.a! .MADE
|
1997-03-25 00:54:12 +03:00
|
|
|
.endif
|
2002-02-12 00:14:58 +03:00
|
|
|
.if ${MKPICLIB} == "no"
|
|
|
|
${DESTDIR}${LIBDIR}/lib${LIB}_pic.a! lib${LIB}.a __archivesymlinkpic
|
|
|
|
.else
|
|
|
|
${DESTDIR}${LIBDIR}/lib${LIB}_pic.a! lib${LIB}_pic.a __archiveinstall
|
|
|
|
.endif
|
|
|
|
.else
|
1999-09-05 01:48:33 +04:00
|
|
|
.if !defined(BUILD) && !make(all) && !make(lib${LIB}_pic.a)
|
1997-03-25 00:54:12 +03:00
|
|
|
${DESTDIR}${LIBDIR}/lib${LIB}_pic.a: .MADE
|
|
|
|
.endif
|
1999-11-28 07:50:41 +03:00
|
|
|
.if ${MKPICLIB} == "no"
|
2002-02-12 00:14:58 +03:00
|
|
|
${DESTDIR}${LIBDIR}/lib${LIB}_pic.a: lib${LIB}.a __archivesymlinkpic
|
1999-11-28 07:50:41 +03:00
|
|
|
.else
|
1997-03-25 00:54:12 +03:00
|
|
|
${DESTDIR}${LIBDIR}/lib${LIB}_pic.a: lib${LIB}_pic.a __archiveinstall
|
1993-10-17 04:09:01 +03:00
|
|
|
.endif
|
1999-11-28 07:50:41 +03:00
|
|
|
.endif
|
2002-02-12 00:14:58 +03:00
|
|
|
.endif
|
1997-03-25 00:54:12 +03:00
|
|
|
|
2000-07-04 01:08:55 +04:00
|
|
|
.if ${MKPIC} != "no" && defined(SHLIB_FULLVERSION)
|
* Add user-controlled mk.conf variables
- SHLIBDIR Location to install shared libraries if ${USE_SHLIBDIR}
is "yes". Defaults to "/usr/lib".
- USE_SHLIBDIR If "yes", install shared libraries in ${SHLIBDIR}
instead of ${LIBDIR}. Defaults to "no".
Sets ${_LIBSODIR} to the appropriate value.
This may be set by individual Makefiles as well.
- SHLINKDIR Location of shared linker. Defaults to "/usr/libexec".
If != "/usr/libexec", change the dynamic-linker
encoded in shared programs
* Set USE_SHLIBDIR for libraries used by /bin and /sbin:
libc libcrypt libcrypto libedit libipsec libkvm libm libmi387
libtermcap libutil libz
* If ${_LIBSODIR} != ${LIBDIR}, add symlinks from ${LIBDIR}/${LIB}.so*
to ${_LIBSODIR}/${LIB}.so* for compatibility.
* Always install /sbin/init statically (for now)
The net effect of these changes depends on how the variables are set:
1.) If nothing is set or changed, there is no change from the
current behaviour:
- Static /bin, /sbin, and bits of /usr/*
- Dynamic rest
- Shared linker is /usr/libexec/ld*so
2.) If the following make variables are set:
LDSTATIC=
SHLINKDIR=/lib
SHLIBDIR=/lib
Then the behaviour becomes:
- Dynamic tools
- .so libraries used by /bin and /sbin are installed to /lib,
with symlinks from /usr/lib/lib*so to -> /lib/lib*so
where appropriate
- Shared linker is /lib/ld*so
3.) As per 2.), but add the following variable:
USE_SHLIBDIR=yes
This forces all .so's to be instaleld in /lib (with compat
symlinks), not just those tagged by their Makefiles to be.
Again, compat symlinks are installed
2001-12-28 04:32:37 +03:00
|
|
|
libinstall:: ${DESTDIR}${_LIBSODIR}/lib${LIB}.so.${SHLIB_FULLVERSION}
|
|
|
|
.PRECIOUS: ${DESTDIR}${_LIBSODIR}/lib${LIB}.so.${SHLIB_FULLVERSION}
|
2002-02-12 00:14:58 +03:00
|
|
|
|
1997-03-25 00:54:12 +03:00
|
|
|
.if !defined(UPDATE)
|
2002-02-12 00:14:58 +03:00
|
|
|
.if !defined(BUILD) && !make(all) && !make(lib${LIB}.so.${SHLIB_FULLVERSION})
|
|
|
|
${DESTDIR}${_LIBSODIR}/lib${LIB}.so.${SHLIB_FULLVERSION}! .MADE
|
1997-03-25 00:54:12 +03:00
|
|
|
.endif
|
2002-02-12 00:14:58 +03:00
|
|
|
${DESTDIR}${_LIBSODIR}/lib${LIB}.so.${SHLIB_FULLVERSION}! lib${LIB}.so.${SHLIB_FULLVERSION}
|
|
|
|
.else
|
2000-07-04 01:08:55 +04:00
|
|
|
.if !defined(BUILD) && !make(all) && !make(lib${LIB}.so.${SHLIB_FULLVERSION})
|
* Add user-controlled mk.conf variables
- SHLIBDIR Location to install shared libraries if ${USE_SHLIBDIR}
is "yes". Defaults to "/usr/lib".
- USE_SHLIBDIR If "yes", install shared libraries in ${SHLIBDIR}
instead of ${LIBDIR}. Defaults to "no".
Sets ${_LIBSODIR} to the appropriate value.
This may be set by individual Makefiles as well.
- SHLINKDIR Location of shared linker. Defaults to "/usr/libexec".
If != "/usr/libexec", change the dynamic-linker
encoded in shared programs
* Set USE_SHLIBDIR for libraries used by /bin and /sbin:
libc libcrypt libcrypto libedit libipsec libkvm libm libmi387
libtermcap libutil libz
* If ${_LIBSODIR} != ${LIBDIR}, add symlinks from ${LIBDIR}/${LIB}.so*
to ${_LIBSODIR}/${LIB}.so* for compatibility.
* Always install /sbin/init statically (for now)
The net effect of these changes depends on how the variables are set:
1.) If nothing is set or changed, there is no change from the
current behaviour:
- Static /bin, /sbin, and bits of /usr/*
- Dynamic rest
- Shared linker is /usr/libexec/ld*so
2.) If the following make variables are set:
LDSTATIC=
SHLINKDIR=/lib
SHLIBDIR=/lib
Then the behaviour becomes:
- Dynamic tools
- .so libraries used by /bin and /sbin are installed to /lib,
with symlinks from /usr/lib/lib*so to -> /lib/lib*so
where appropriate
- Shared linker is /lib/ld*so
3.) As per 2.), but add the following variable:
USE_SHLIBDIR=yes
This forces all .so's to be instaleld in /lib (with compat
symlinks), not just those tagged by their Makefiles to be.
Again, compat symlinks are installed
2001-12-28 04:32:37 +03:00
|
|
|
${DESTDIR}${_LIBSODIR}/lib${LIB}.so.${SHLIB_FULLVERSION}: .MADE
|
1997-03-25 00:54:12 +03:00
|
|
|
.endif
|
* Add user-controlled mk.conf variables
- SHLIBDIR Location to install shared libraries if ${USE_SHLIBDIR}
is "yes". Defaults to "/usr/lib".
- USE_SHLIBDIR If "yes", install shared libraries in ${SHLIBDIR}
instead of ${LIBDIR}. Defaults to "no".
Sets ${_LIBSODIR} to the appropriate value.
This may be set by individual Makefiles as well.
- SHLINKDIR Location of shared linker. Defaults to "/usr/libexec".
If != "/usr/libexec", change the dynamic-linker
encoded in shared programs
* Set USE_SHLIBDIR for libraries used by /bin and /sbin:
libc libcrypt libcrypto libedit libipsec libkvm libm libmi387
libtermcap libutil libz
* If ${_LIBSODIR} != ${LIBDIR}, add symlinks from ${LIBDIR}/${LIB}.so*
to ${_LIBSODIR}/${LIB}.so* for compatibility.
* Always install /sbin/init statically (for now)
The net effect of these changes depends on how the variables are set:
1.) If nothing is set or changed, there is no change from the
current behaviour:
- Static /bin, /sbin, and bits of /usr/*
- Dynamic rest
- Shared linker is /usr/libexec/ld*so
2.) If the following make variables are set:
LDSTATIC=
SHLINKDIR=/lib
SHLIBDIR=/lib
Then the behaviour becomes:
- Dynamic tools
- .so libraries used by /bin and /sbin are installed to /lib,
with symlinks from /usr/lib/lib*so to -> /lib/lib*so
where appropriate
- Shared linker is /lib/ld*so
3.) As per 2.), but add the following variable:
USE_SHLIBDIR=yes
This forces all .so's to be instaleld in /lib (with compat
symlinks), not just those tagged by their Makefiles to be.
Again, compat symlinks are installed
2001-12-28 04:32:37 +03:00
|
|
|
${DESTDIR}${_LIBSODIR}/lib${LIB}.so.${SHLIB_FULLVERSION}: lib${LIB}.so.${SHLIB_FULLVERSION}
|
2002-02-12 00:14:58 +03:00
|
|
|
.endif
|
2001-11-02 08:21:47 +03:00
|
|
|
${INSTALL_FILE} -o ${LIBOWN} -g ${LIBGRP} -m ${LIBMODE} \
|
2002-10-22 22:48:27 +04:00
|
|
|
${SYSPKGTAG} ${.ALLSRC} ${.TARGET}
|
* Add user-controlled mk.conf variables
- SHLIBDIR Location to install shared libraries if ${USE_SHLIBDIR}
is "yes". Defaults to "/usr/lib".
- USE_SHLIBDIR If "yes", install shared libraries in ${SHLIBDIR}
instead of ${LIBDIR}. Defaults to "no".
Sets ${_LIBSODIR} to the appropriate value.
This may be set by individual Makefiles as well.
- SHLINKDIR Location of shared linker. Defaults to "/usr/libexec".
If != "/usr/libexec", change the dynamic-linker
encoded in shared programs
* Set USE_SHLIBDIR for libraries used by /bin and /sbin:
libc libcrypt libcrypto libedit libipsec libkvm libm libmi387
libtermcap libutil libz
* If ${_LIBSODIR} != ${LIBDIR}, add symlinks from ${LIBDIR}/${LIB}.so*
to ${_LIBSODIR}/${LIB}.so* for compatibility.
* Always install /sbin/init statically (for now)
The net effect of these changes depends on how the variables are set:
1.) If nothing is set or changed, there is no change from the
current behaviour:
- Static /bin, /sbin, and bits of /usr/*
- Dynamic rest
- Shared linker is /usr/libexec/ld*so
2.) If the following make variables are set:
LDSTATIC=
SHLINKDIR=/lib
SHLIBDIR=/lib
Then the behaviour becomes:
- Dynamic tools
- .so libraries used by /bin and /sbin are installed to /lib,
with symlinks from /usr/lib/lib*so to -> /lib/lib*so
where appropriate
- Shared linker is /lib/ld*so
3.) As per 2.), but add the following variable:
USE_SHLIBDIR=yes
This forces all .so's to be instaleld in /lib (with compat
symlinks), not just those tagged by their Makefiles to be.
Again, compat symlinks are installed
2001-12-28 04:32:37 +03:00
|
|
|
.if ${_LIBSODIR} != ${LIBDIR}
|
2002-10-22 22:48:27 +04:00
|
|
|
${INSTALL_SYMLINK} ${SYSPKGTAG} \
|
|
|
|
${_LIBSODIR}/lib${LIB}.so.${SHLIB_FULLVERSION} \
|
|
|
|
${DESTDIR}${LIBDIR}/lib${LIB}.so.${SHLIB_FULLVERSION}
|
* Add user-controlled mk.conf variables
- SHLIBDIR Location to install shared libraries if ${USE_SHLIBDIR}
is "yes". Defaults to "/usr/lib".
- USE_SHLIBDIR If "yes", install shared libraries in ${SHLIBDIR}
instead of ${LIBDIR}. Defaults to "no".
Sets ${_LIBSODIR} to the appropriate value.
This may be set by individual Makefiles as well.
- SHLINKDIR Location of shared linker. Defaults to "/usr/libexec".
If != "/usr/libexec", change the dynamic-linker
encoded in shared programs
* Set USE_SHLIBDIR for libraries used by /bin and /sbin:
libc libcrypt libcrypto libedit libipsec libkvm libm libmi387
libtermcap libutil libz
* If ${_LIBSODIR} != ${LIBDIR}, add symlinks from ${LIBDIR}/${LIB}.so*
to ${_LIBSODIR}/${LIB}.so* for compatibility.
* Always install /sbin/init statically (for now)
The net effect of these changes depends on how the variables are set:
1.) If nothing is set or changed, there is no change from the
current behaviour:
- Static /bin, /sbin, and bits of /usr/*
- Dynamic rest
- Shared linker is /usr/libexec/ld*so
2.) If the following make variables are set:
LDSTATIC=
SHLINKDIR=/lib
SHLIBDIR=/lib
Then the behaviour becomes:
- Dynamic tools
- .so libraries used by /bin and /sbin are installed to /lib,
with symlinks from /usr/lib/lib*so to -> /lib/lib*so
where appropriate
- Shared linker is /lib/ld*so
3.) As per 2.), but add the following variable:
USE_SHLIBDIR=yes
This forces all .so's to be instaleld in /lib (with compat
symlinks), not just those tagged by their Makefiles to be.
Again, compat symlinks are installed
2001-12-28 04:32:37 +03:00
|
|
|
.endif
|
1999-02-12 04:10:06 +03:00
|
|
|
.if ${OBJECT_FMT} == "a.out" && !defined(DESTDIR)
|
* Add user-controlled mk.conf variables
- SHLIBDIR Location to install shared libraries if ${USE_SHLIBDIR}
is "yes". Defaults to "/usr/lib".
- USE_SHLIBDIR If "yes", install shared libraries in ${SHLIBDIR}
instead of ${LIBDIR}. Defaults to "no".
Sets ${_LIBSODIR} to the appropriate value.
This may be set by individual Makefiles as well.
- SHLINKDIR Location of shared linker. Defaults to "/usr/libexec".
If != "/usr/libexec", change the dynamic-linker
encoded in shared programs
* Set USE_SHLIBDIR for libraries used by /bin and /sbin:
libc libcrypt libcrypto libedit libipsec libkvm libm libmi387
libtermcap libutil libz
* If ${_LIBSODIR} != ${LIBDIR}, add symlinks from ${LIBDIR}/${LIB}.so*
to ${_LIBSODIR}/${LIB}.so* for compatibility.
* Always install /sbin/init statically (for now)
The net effect of these changes depends on how the variables are set:
1.) If nothing is set or changed, there is no change from the
current behaviour:
- Static /bin, /sbin, and bits of /usr/*
- Dynamic rest
- Shared linker is /usr/libexec/ld*so
2.) If the following make variables are set:
LDSTATIC=
SHLINKDIR=/lib
SHLIBDIR=/lib
Then the behaviour becomes:
- Dynamic tools
- .so libraries used by /bin and /sbin are installed to /lib,
with symlinks from /usr/lib/lib*so to -> /lib/lib*so
where appropriate
- Shared linker is /lib/ld*so
3.) As per 2.), but add the following variable:
USE_SHLIBDIR=yes
This forces all .so's to be instaleld in /lib (with compat
symlinks), not just those tagged by their Makefiles to be.
Again, compat symlinks are installed
2001-12-28 04:32:37 +03:00
|
|
|
/sbin/ldconfig -m ${_LIBSODIR} ${LIBDIR}
|
1998-12-03 01:52:21 +03:00
|
|
|
.endif
|
1999-02-12 04:10:06 +03:00
|
|
|
.if ${OBJECT_FMT} == "ELF"
|
2002-10-22 22:48:27 +04:00
|
|
|
${INSTALL_SYMLINK} ${SYSPKGTAG} \
|
|
|
|
lib${LIB}.so.${SHLIB_FULLVERSION} \
|
|
|
|
${DESTDIR}${_LIBSODIR}/lib${LIB}.so.${SHLIB_MAJOR}
|
* Add user-controlled mk.conf variables
- SHLIBDIR Location to install shared libraries if ${USE_SHLIBDIR}
is "yes". Defaults to "/usr/lib".
- USE_SHLIBDIR If "yes", install shared libraries in ${SHLIBDIR}
instead of ${LIBDIR}. Defaults to "no".
Sets ${_LIBSODIR} to the appropriate value.
This may be set by individual Makefiles as well.
- SHLINKDIR Location of shared linker. Defaults to "/usr/libexec".
If != "/usr/libexec", change the dynamic-linker
encoded in shared programs
* Set USE_SHLIBDIR for libraries used by /bin and /sbin:
libc libcrypt libcrypto libedit libipsec libkvm libm libmi387
libtermcap libutil libz
* If ${_LIBSODIR} != ${LIBDIR}, add symlinks from ${LIBDIR}/${LIB}.so*
to ${_LIBSODIR}/${LIB}.so* for compatibility.
* Always install /sbin/init statically (for now)
The net effect of these changes depends on how the variables are set:
1.) If nothing is set or changed, there is no change from the
current behaviour:
- Static /bin, /sbin, and bits of /usr/*
- Dynamic rest
- Shared linker is /usr/libexec/ld*so
2.) If the following make variables are set:
LDSTATIC=
SHLINKDIR=/lib
SHLIBDIR=/lib
Then the behaviour becomes:
- Dynamic tools
- .so libraries used by /bin and /sbin are installed to /lib,
with symlinks from /usr/lib/lib*so to -> /lib/lib*so
where appropriate
- Shared linker is /lib/ld*so
3.) As per 2.), but add the following variable:
USE_SHLIBDIR=yes
This forces all .so's to be instaleld in /lib (with compat
symlinks), not just those tagged by their Makefiles to be.
Again, compat symlinks are installed
2001-12-28 04:32:37 +03:00
|
|
|
.if ${_LIBSODIR} != ${LIBDIR}
|
2002-10-22 22:48:27 +04:00
|
|
|
${INSTALL_SYMLINK} ${SYSPKGTAG} \
|
|
|
|
${_LIBSODIR}/lib${LIB}.so.${SHLIB_FULLVERSION} \
|
|
|
|
${DESTDIR}${LIBDIR}/lib${LIB}.so.${SHLIB_MAJOR}
|
* Add user-controlled mk.conf variables
- SHLIBDIR Location to install shared libraries if ${USE_SHLIBDIR}
is "yes". Defaults to "/usr/lib".
- USE_SHLIBDIR If "yes", install shared libraries in ${SHLIBDIR}
instead of ${LIBDIR}. Defaults to "no".
Sets ${_LIBSODIR} to the appropriate value.
This may be set by individual Makefiles as well.
- SHLINKDIR Location of shared linker. Defaults to "/usr/libexec".
If != "/usr/libexec", change the dynamic-linker
encoded in shared programs
* Set USE_SHLIBDIR for libraries used by /bin and /sbin:
libc libcrypt libcrypto libedit libipsec libkvm libm libmi387
libtermcap libutil libz
* If ${_LIBSODIR} != ${LIBDIR}, add symlinks from ${LIBDIR}/${LIB}.so*
to ${_LIBSODIR}/${LIB}.so* for compatibility.
* Always install /sbin/init statically (for now)
The net effect of these changes depends on how the variables are set:
1.) If nothing is set or changed, there is no change from the
current behaviour:
- Static /bin, /sbin, and bits of /usr/*
- Dynamic rest
- Shared linker is /usr/libexec/ld*so
2.) If the following make variables are set:
LDSTATIC=
SHLINKDIR=/lib
SHLIBDIR=/lib
Then the behaviour becomes:
- Dynamic tools
- .so libraries used by /bin and /sbin are installed to /lib,
with symlinks from /usr/lib/lib*so to -> /lib/lib*so
where appropriate
- Shared linker is /lib/ld*so
3.) As per 2.), but add the following variable:
USE_SHLIBDIR=yes
This forces all .so's to be instaleld in /lib (with compat
symlinks), not just those tagged by their Makefiles to be.
Again, compat symlinks are installed
2001-12-28 04:32:37 +03:00
|
|
|
.endif
|
1999-02-12 04:10:06 +03:00
|
|
|
.if ${MKLINKLIB} != "no"
|
2002-10-22 22:48:27 +04:00
|
|
|
${INSTALL_SYMLINK} ${SYSPKGTAG} \
|
|
|
|
lib${LIB}.so.${SHLIB_FULLVERSION} \
|
|
|
|
${DESTDIR}${_LIBSODIR}/lib${LIB}.so
|
* Add user-controlled mk.conf variables
- SHLIBDIR Location to install shared libraries if ${USE_SHLIBDIR}
is "yes". Defaults to "/usr/lib".
- USE_SHLIBDIR If "yes", install shared libraries in ${SHLIBDIR}
instead of ${LIBDIR}. Defaults to "no".
Sets ${_LIBSODIR} to the appropriate value.
This may be set by individual Makefiles as well.
- SHLINKDIR Location of shared linker. Defaults to "/usr/libexec".
If != "/usr/libexec", change the dynamic-linker
encoded in shared programs
* Set USE_SHLIBDIR for libraries used by /bin and /sbin:
libc libcrypt libcrypto libedit libipsec libkvm libm libmi387
libtermcap libutil libz
* If ${_LIBSODIR} != ${LIBDIR}, add symlinks from ${LIBDIR}/${LIB}.so*
to ${_LIBSODIR}/${LIB}.so* for compatibility.
* Always install /sbin/init statically (for now)
The net effect of these changes depends on how the variables are set:
1.) If nothing is set or changed, there is no change from the
current behaviour:
- Static /bin, /sbin, and bits of /usr/*
- Dynamic rest
- Shared linker is /usr/libexec/ld*so
2.) If the following make variables are set:
LDSTATIC=
SHLINKDIR=/lib
SHLIBDIR=/lib
Then the behaviour becomes:
- Dynamic tools
- .so libraries used by /bin and /sbin are installed to /lib,
with symlinks from /usr/lib/lib*so to -> /lib/lib*so
where appropriate
- Shared linker is /lib/ld*so
3.) As per 2.), but add the following variable:
USE_SHLIBDIR=yes
This forces all .so's to be instaleld in /lib (with compat
symlinks), not just those tagged by their Makefiles to be.
Again, compat symlinks are installed
2001-12-28 04:32:37 +03:00
|
|
|
.if ${_LIBSODIR} != ${LIBDIR}
|
2002-10-22 22:48:27 +04:00
|
|
|
${INSTALL_SYMLINK} ${SYSPKGTAG} \
|
|
|
|
${_LIBSODIR}/lib${LIB}.so.${SHLIB_FULLVERSION} \
|
|
|
|
${DESTDIR}${LIBDIR}/lib${LIB}.so
|
1997-02-17 22:24:47 +03:00
|
|
|
.endif
|
1993-10-24 03:05:31 +03:00
|
|
|
.endif
|
1998-09-14 03:25:18 +04:00
|
|
|
.endif
|
* Add user-controlled mk.conf variables
- SHLIBDIR Location to install shared libraries if ${USE_SHLIBDIR}
is "yes". Defaults to "/usr/lib".
- USE_SHLIBDIR If "yes", install shared libraries in ${SHLIBDIR}
instead of ${LIBDIR}. Defaults to "no".
Sets ${_LIBSODIR} to the appropriate value.
This may be set by individual Makefiles as well.
- SHLINKDIR Location of shared linker. Defaults to "/usr/libexec".
If != "/usr/libexec", change the dynamic-linker
encoded in shared programs
* Set USE_SHLIBDIR for libraries used by /bin and /sbin:
libc libcrypt libcrypto libedit libipsec libkvm libm libmi387
libtermcap libutil libz
* If ${_LIBSODIR} != ${LIBDIR}, add symlinks from ${LIBDIR}/${LIB}.so*
to ${_LIBSODIR}/${LIB}.so* for compatibility.
* Always install /sbin/init statically (for now)
The net effect of these changes depends on how the variables are set:
1.) If nothing is set or changed, there is no change from the
current behaviour:
- Static /bin, /sbin, and bits of /usr/*
- Dynamic rest
- Shared linker is /usr/libexec/ld*so
2.) If the following make variables are set:
LDSTATIC=
SHLINKDIR=/lib
SHLIBDIR=/lib
Then the behaviour becomes:
- Dynamic tools
- .so libraries used by /bin and /sbin are installed to /lib,
with symlinks from /usr/lib/lib*so to -> /lib/lib*so
where appropriate
- Shared linker is /lib/ld*so
3.) As per 2.), but add the following variable:
USE_SHLIBDIR=yes
This forces all .so's to be instaleld in /lib (with compat
symlinks), not just those tagged by their Makefiles to be.
Again, compat symlinks are installed
2001-12-28 04:32:37 +03:00
|
|
|
.endif
|
1997-03-25 00:54:12 +03:00
|
|
|
|
2001-04-27 21:04:39 +04:00
|
|
|
.if ${MKLINT} != "no" && ${MKLINKLIB} != "no" && !empty(LOBJS)
|
1997-03-25 00:54:12 +03:00
|
|
|
libinstall:: ${DESTDIR}${LINTLIBDIR}/llib-l${LIB}.ln
|
2000-06-06 13:22:00 +04:00
|
|
|
.PRECIOUS: ${DESTDIR}${LINTLIBDIR}/llib-l${LIB}.ln
|
2002-02-12 00:14:58 +03:00
|
|
|
|
1997-03-25 00:54:12 +03:00
|
|
|
.if !defined(UPDATE)
|
2002-02-12 00:14:58 +03:00
|
|
|
.if !defined(BUILD) && !make(all) && !make(llib-l${LIB}.ln)
|
|
|
|
${DESTDIR}${LINTLIBDIR}/llib-l${LIB}.ln! .MADE
|
1995-06-24 12:27:37 +04:00
|
|
|
.endif
|
2002-02-12 00:14:58 +03:00
|
|
|
${DESTDIR}${LINTLIBDIR}/llib-l${LIB}.ln! llib-l${LIB}.ln
|
|
|
|
.else
|
1999-09-05 01:48:33 +04:00
|
|
|
.if !defined(BUILD) && !make(all) && !make(llib-l${LIB}.ln)
|
1997-03-25 00:54:12 +03:00
|
|
|
${DESTDIR}${LINTLIBDIR}/llib-l${LIB}.ln: .MADE
|
1993-03-21 12:45:37 +03:00
|
|
|
.endif
|
1997-05-07 01:29:33 +04:00
|
|
|
${DESTDIR}${LINTLIBDIR}/llib-l${LIB}.ln: llib-l${LIB}.ln
|
2002-02-12 00:14:58 +03:00
|
|
|
.endif
|
2001-11-02 08:21:47 +03:00
|
|
|
${INSTALL_FILE} -o ${LIBOWN} -g ${LIBGRP} -m ${LIBMODE} \
|
2002-10-22 22:48:27 +04:00
|
|
|
${SYSPKGTAG} ${.ALLSRC} ${DESTDIR}${LINTLIBDIR}
|
1997-03-13 05:45:58 +03:00
|
|
|
.endif
|
1993-03-21 12:45:37 +03:00
|
|
|
.endif
|
|
|
|
|
2001-11-02 08:21:47 +03:00
|
|
|
##### Pull in related .mk logic
|
1993-03-21 12:45:37 +03:00
|
|
|
.include <bsd.man.mk>
|
1995-04-22 00:29:40 +04:00
|
|
|
.include <bsd.nls.mk>
|
1997-03-27 20:33:34 +03:00
|
|
|
.include <bsd.files.mk>
|
1997-03-25 00:54:12 +03:00
|
|
|
.include <bsd.inc.mk>
|
1997-05-27 21:45:57 +04:00
|
|
|
.include <bsd.links.mk>
|
1993-08-16 00:42:39 +04:00
|
|
|
.include <bsd.dep.mk>
|
1997-10-11 12:16:24 +04:00
|
|
|
|
2001-11-02 08:21:47 +03:00
|
|
|
${TARGETS}: # ensure existence
|