Annotation of src/share/mk/bsd.prog.mk, Revision 1.59
1.59 ! cgd 1: # $NetBSD: bsd.prog.mk,v 1.58 1996/12/13 08:02:52 mikel Exp $
1.44 cgd 2: # @(#)bsd.prog.mk 5.26 (Berkeley) 6/25/91
1.1 cgd 3:
4: .if exists(${.CURDIR}/../Makefile.inc)
5: .include "${.CURDIR}/../Makefile.inc"
6: .endif
1.48 mycroft 7:
8: .include <bsd.own.mk>
1.1 cgd 9:
1.18 mycroft 10: .SUFFIXES: .out .o .c .cc .C .y .l .s .8 .7 .6 .5 .4 .3 .2 .1 .0
1.1 cgd 11:
1.25 mycroft 12: CFLAGS+= ${COPTS}
1.1 cgd 13:
1.46 mycroft 14: LIBCRT0?= ${DESTDIR}/usr/lib/crt0.o
15: LIBC?= ${DESTDIR}/usr/lib/libc.a
16: LIBCOMPAT?= ${DESTDIR}/usr/lib/libcompat.a
17: LIBCRYPT?= ${DESTDIR}/usr/lib/libcrypt.a
18: LIBCURSES?= ${DESTDIR}/usr/lib/libcurses.a
19: LIBDBM?= ${DESTDIR}/usr/lib/libdbm.a
20: LIBDES?= ${DESTDIR}/usr/lib/libdes.a
1.51 mycroft 21: LIBEDIT?= ${DESTDIR}/usr/lib/libedit.a
1.46 mycroft 22: LIBGCC?= ${DESTDIR}/usr/lib/libgcc.a
23: LIBKDB?= ${DESTDIR}/usr/lib/libkdb.a
24: LIBKRB?= ${DESTDIR}/usr/lib/libkrb.a
25: LIBKVM?= ${DESTDIR}/usr/lib/libkvm.a
1.55 jtc 26: LIBL?= ${DESTDIR}/usr/lib/libl.a
1.46 mycroft 27: LIBM?= ${DESTDIR}/usr/lib/libm.a
28: LIBMP?= ${DESTDIR}/usr/lib/libmp.a
29: LIBPC?= ${DESTDIR}/usr/lib/libpc.a
1.58 mikel 30: LIBPCAP?= ${DESTDIR}/usr/lib/libpcap.a
1.46 mycroft 31: LIBPLOT?= ${DESTDIR}/usr/lib/libplot.a
32: LIBRESOLV?= ${DESTDIR}/usr/lib/libresolv.a
33: LIBRPCSVC?= ${DESTDIR}/usr/lib/librpcsvc.a
34: LIBSKEY?= ${DESTDIR}/usr/lib/libskey.a
35: LIBTERMCAP?= ${DESTDIR}/usr/lib/libtermcap.a
36: LIBUTIL?= ${DESTDIR}/usr/lib/libutil.a
1.57 mrg 37: LIBWRAP?= ${DESTDIR}/usr/lib/libwrap.a
1.55 jtc 38: LIBY?= ${DESTDIR}/usr/lib/liby.a
1.57 mrg 39: LIBZ?= ${DESTDIR}/usr/lib/libz.a
1.1 cgd 40:
41: .if defined(SHAREDSTRINGS)
42: CLEANFILES+=strings
43: .c.o:
44: ${CC} -E ${CFLAGS} ${.IMPSRC} | xstr -c -
45: @${CC} ${CFLAGS} -c x.c -o ${.TARGET}
46: @rm -f x.c
1.18 mycroft 47:
48: .cc.o:
49: ${CXX} -E ${CXXFLAGS} ${.IMPSRC} | xstr -c -
50: @mv -f x.c x.cc
51: @${CXX} ${CXXFLAGS} -c x.cc -o ${.TARGET}
1.26 mycroft 52: @rm -f x.cc
1.18 mycroft 53:
54: .C.o:
55: ${CXX} -E ${CXXFLAGS} ${.IMPSRC} | xstr -c -
56: @mv -f x.c x.C
57: @${CXX} ${CXXFLAGS} -c x.C -o ${.TARGET}
1.26 mycroft 58: @rm -f x.C
1.1 cgd 59: .endif
60:
1.38 jtc 61:
1.1 cgd 62: .if defined(PROG)
1.40 cgd 63: SRCS?= ${PROG}.c
1.45 cgd 64: .if !empty(SRCS:N*.h:N*.sh)
1.52 cgd 65: OBJS+= ${SRCS:N*.h:N*.sh:R:S/$/.o/g}
66: LOBJS+= ${LSRCS:.c=.ln} ${SRCS:M*.c:.c=.ln}
1.45 cgd 67: .endif
1.1 cgd 68:
1.47 cgd 69: .if defined(OBJS) && !empty(OBJS)
1.46 mycroft 70: .if defined(DESTDIR)
1.4 nate 71:
1.26 mycroft 72: ${PROG}: ${LIBCRT0} ${OBJS} ${LIBC} ${DPADD}
1.46 mycroft 73: ${CC} ${LDFLAGS} ${LDSTATIC} -o ${.TARGET} -nostdlib -L${DESTDIR}/usr/lib ${LIBCRT0} ${OBJS} ${LDADD} -lgcc -lc -lgcc
1.4 nate 74:
1.46 mycroft 75: .else
1.4 nate 76:
1.26 mycroft 77: ${PROG}: ${LIBCRT0} ${OBJS} ${LIBC} ${DPADD}
1.32 cgd 78: ${CC} ${LDFLAGS} ${LDSTATIC} -o ${.TARGET} ${OBJS} ${LDADD}
1.1 cgd 79:
1.47 cgd 80: .endif # defined(DESTDIR)
81: .endif # defined(OBJS) && !empty(OBJS)
1.1 cgd 82:
1.49 cgd 83: .if !defined(MAN)
84: MAN= ${PROG}.1
85: .endif # !defined(MAN)
86: .endif # defined(PROG)
1.11 mycroft 87:
1.1 cgd 88: .MAIN: all
1.43 cgd 89: all: ${PROG} _SUBDIRUSE
1.1 cgd 90:
91: .if !target(clean)
1.43 cgd 92: clean: _SUBDIRUSE
1.53 cgd 93: rm -f a.out [Ee]rrs mklog core *.core \
94: ${PROG} ${OBJS} ${LOBJS} ${CLEANFILES}
1.1 cgd 95: .endif
96:
1.43 cgd 97: cleandir: _SUBDIRUSE clean
1.59 ! cgd 98:
! 99: .if defined(SRCS)
! 100: afterdepend: .depend
! 101: @(TMP=/tmp/_depend$$$$; \
! 102: sed -e 's/^\([^\.]*\).o[ ]*:/\1.o \1.ln:/' \
! 103: < .depend > $$TMP; \
! 104: mv $$TMP .depend)
! 105: .endif
1.27 mycroft 106:
1.1 cgd 107: .if !target(install)
108: .if !target(beforeinstall)
109: beforeinstall:
110: .endif
111: .if !target(afterinstall)
112: afterinstall:
113: .endif
114:
1.14 mycroft 115: .if !target(realinstall)
1.26 mycroft 116: realinstall:
1.1 cgd 117: .if defined(PROG)
1.56 thorpej 118: ${INSTALL} ${COPY} ${STRIP} -o ${BINOWN} -g ${BINGRP} -m ${BINMODE} \
1.1 cgd 119: ${PROG} ${DESTDIR}${BINDIR}
120: .endif
121: .if defined(HIDEGAME)
1.41 cgd 122: (cd ${DESTDIR}/usr/games; rm -f ${PROG}; ln -s dm ${PROG})
1.1 cgd 123: .endif
1.23 mycroft 124: .endif
125:
1.29 mycroft 126: install: maninstall _SUBDIRUSE
1.1 cgd 127: .if defined(LINKS) && !empty(LINKS)
128: @set ${LINKS}; \
129: while test $$# -ge 2; do \
130: l=${DESTDIR}$$1; \
131: shift; \
132: t=${DESTDIR}$$1; \
133: shift; \
134: echo $$t -\> $$l; \
135: rm -f $$t; \
136: ln $$l $$t; \
137: done; true
1.14 mycroft 138: .endif
1.1 cgd 139:
140: maninstall: afterinstall
141: afterinstall: realinstall
142: realinstall: beforeinstall
143: .endif
144:
145: .if !target(lint)
1.52 cgd 146: lint: ${LOBJS}
147: .if defined(LOBJS) && !empty(LOBJS)
148: @${LINT} ${LINTFLAGS} ${LDFLAGS:M-L*} ${LOBJS} ${LDADD}
1.1 cgd 149: .endif
150: .endif
151:
152: .if !defined(NOMAN)
153: .include <bsd.man.mk>
1.50 jtc 154: .endif
155:
156: .if !defined(NONLS)
157: .include <bsd.nls.mk>
1.1 cgd 158: .endif
1.24 mycroft 159:
160: .include <bsd.obj.mk>
1.26 mycroft 161: .include <bsd.dep.mk>
1.28 mycroft 162: .include <bsd.subdir.mk>
1.54 christos 163: .include <bsd.sys.mk>
CVSweb <webmaster@jp.NetBSD.org>