View | Details | Raw Unified | Return to bug 50945
Collapse All | Expand All

(-)gnu/lib/csu/Makefile (+2 lines)
Lines 60-68 Link Here
60
	${MAKE} -f ${.ALLSRC} MFILE=${.ALLSRC} GCCDIR=${GCCDIR} ${.TARGET}
60
	${MAKE} -f ${.ALLSRC} MFILE=${.ALLSRC} GCCDIR=${GCCDIR} ${.TARGET}
61
61
62
realinstall:
62
realinstall:
63
.if !defined(NOINSTALLLIB)
63
.for file in ${OBJS} ${SOBJS} ${TGTOBJS}
64
.for file in ${OBJS} ${SOBJS} ${TGTOBJS}
64
	${INSTALL} -o ${LIBOWN} -g ${LIBGRP} -m ${LIBMODE} \
65
	${INSTALL} -o ${LIBOWN} -g ${LIBGRP} -m ${LIBMODE} \
65
	    ${file} ${DESTDIR}${LIBDIR}/${file:S/.So$/S.o/}
66
	    ${file} ${DESTDIR}${LIBDIR}/${file:S/.So$/S.o/}
66
.endfor
67
.endfor
68
.endif
67
69
68
.include <bsd.lib.mk>
70
.include <bsd.lib.mk>
(-)lib/csu/i386/Makefile (+2 lines)
Lines 41-48 Link Here
41
	@mv ${.TARGET}.tmp ${.TARGET}
41
	@mv ${.TARGET}.tmp ${.TARGET}
42
42
43
realinstall:
43
realinstall:
44
.if !defined(NOINSTALLLIB)
44
	${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 444 ${OBJS} \
45
	${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 444 ${OBJS} \
45
		${DESTDIR}${LIBDIR}
46
		${DESTDIR}${LIBDIR}
47
.endif
46
48
47
depend:	.depend
49
depend:	.depend
48
50
(-)lib/csu/i386-elf/Makefile (+2 lines)
Lines 18-24 Link Here
18
	${CC} ${CFLAGS} -DGCRT -c -o gcrt1.o ${.CURDIR}/crt1.c
18
	${CC} ${CFLAGS} -DGCRT -c -o gcrt1.o ${.CURDIR}/crt1.c
19
19
20
realinstall:
20
realinstall:
21
.if !defined(NOINSTALLLIB)
21
	${INSTALL} -o ${LIBOWN} -g ${LIBGRP} -m ${LIBMODE} \
22
	${INSTALL} -o ${LIBOWN} -g ${LIBGRP} -m ${LIBMODE} \
22
	    ${OBJS} ${DESTDIR}${LIBDIR}
23
	    ${OBJS} ${DESTDIR}${LIBDIR}
24
.endif
23
25
24
.include <bsd.lib.mk>
26
.include <bsd.lib.mk>
(-)lib/libncurses/Makefile (+2 lines)
Lines 230-240 Link Here
230
	make_keys MKterm.h.awk comp_captab.c curses.head \
230
	make_keys MKterm.h.awk comp_captab.c curses.head \
231
	namehdr nameftr codeftr ${NAMESRC} ${CODESRC}
231
	namehdr nameftr codeftr ${NAMESRC} ${CODESRC}
232
232
233
.if !defined(NOINSTALLLIB)
233
SYMLINKS+=libncurses.a ${LIBDIR}/libcurses.a
234
SYMLINKS+=libncurses.a ${LIBDIR}/libcurses.a
234
SYMLINKS+=libncurses.a ${LIBDIR}/libtermcap.a
235
SYMLINKS+=libncurses.a ${LIBDIR}/libtermcap.a
235
SYMLINKS+=libncurses.a ${LIBDIR}/libtermlib.a
236
SYMLINKS+=libncurses.a ${LIBDIR}/libtermlib.a
236
SYMLINKS+=libncurses.a ${LIBDIR}/libmytinfo.a
237
SYMLINKS+=libncurses.a ${LIBDIR}/libmytinfo.a
237
SYMLINKS+=libncurses.a ${LIBDIR}/libtinfo.a
238
SYMLINKS+=libncurses.a ${LIBDIR}/libtinfo.a
239
.endif
238
.if !defined(NOPIC)
240
.if !defined(NOPIC)
239
# no need for major at all, it's an ld-time redirection only
241
# no need for major at all, it's an ld-time redirection only
240
SYMLINKS+=libncurses.so ${SHLIBDIR}/libcurses.so
242
SYMLINKS+=libncurses.so ${SHLIBDIR}/libcurses.so

Return to bug 50945