1 # @(#)bsd.prog.mk 5.26 (Berkeley) 6/25/91 2 3 .if exists(${.CURDIR}/../Makefile.inc) 4 .include "${.CURDIR}/../Makefile.inc" 5 .endif 6 7 .SUFFIXES: .out .o .c .y .l .s .8 .7 .6 .5 .4 .3 .2 .1 .0 8 9 .8.0 .7.0 .6.0 .5.0 .4.0 .3.0 .2.0 .1.0: 10 nroff -mandoc ${.IMPSRC} > ${.TARGET} 11 12 CFLAGS+=${COPTS} 13 14 STRIP?= -s 15 16 BINGRP?= bin 17 BINOWN?= bin 18 BINMODE?= 555 19 20 21 LIBCRT0?= /usr/lib/crt0.o 22 LIBC?= /usr/lib/libc.a 23 LIBCOMPAT?= /usr/lib/libcompat.a 24 LIBCURSES?= /usr/lib/libcurses.a 25 LIBDBM?= /usr/lib/libdbm.a 26 LIBDES?= /usr/lib/libdes.a 27 LIBL?= /usr/lib/libl.a 28 LIBKDB?= /usr/lib/libkdb.a 29 LIBKRB?= /usr/lib/libkrb.a 30 LIBM?= /usr/lib/libm.a 31 LIBMP?= /usr/lib/libmp.a 32 LIBPC?= /usr/lib/libpc.a 33 LIBPLOT?= /usr/lib/libplot.a 34 LIBRESOLV?= /usr/lib/libresolv.a 35 LIBRPC?= /usr/lib/sunrpc.a 36 LIBTERM?= /usr/lib/libterm.a 37 LIBUTIL?= /usr/lib/libutil.a 38 39 .if defined(SHAREDSTRINGS) 40 CLEANFILES+=strings 41 .c.o: 42 ${CC} -E ${CFLAGS} ${.IMPSRC} | xstr -c - 43 @${CC} ${CFLAGS} -c x.c -o ${.TARGET} 44 @rm -f x.c 45 .endif 46 47 .if defined(PROG) 48 .if defined(SRCS) 49 50 OBJS+= ${SRCS:R:S/$/.o/g} 51 52 .if defined(LDONLY) 53 54 ${PROG}: ${LIBCRT0} ${LIBC} ${OBJS} ${DPADD} 55 ${LD} ${LDFLAGS} -o ${.TARGET} ${LIBCRT0} ${OBJS} ${LIBC} ${LDADD} 56 57 .else defined(LDONLY) 58 59 ${PROG}: ${OBJS} ${LIBC} ${DPADD} 60 ${CC} ${LDFLAGS} -o ${.TARGET} ${OBJS} ${LDADD} 61 62 .endif 63 64 .else defined(PROG) 65 66 SRCS= ${PROG}.c 67 68 ${PROG}: ${SRCS} ${LIBC} ${DPADD} 69 ${CC} ${CFLAGS} -o ${.TARGET} ${.CURDIR}/${SRCS} ${LDADD} 70 71 MKDEP= -p 72 73 .endif 74 75 .if !defined(MAN1) && !defined(MAN2) && !defined(MAN3) && \ 76 !defined(MAN4) && !defined(MAN5) && !defined(MAN6) && \ 77 !defined(MAN7) && !defined(MAN8) && !defined(NOMAN) 78 MAN1= ${PROG}.0 79 .endif 80 .endif 81 MANALL= ${MAN1} ${MAN2} ${MAN3} ${MAN4} ${MAN5} ${MAN6} ${MAN7} ${MAN8} 82 83 _PROGSUBDIR: .USE 84 .if defined(SUBDIR) && !empty(SUBDIR) 85 @for entry in ${SUBDIR}; do \ 86 (echo "===> $$entry"; \ 87 if test -d ${.CURDIR}/$${entry}.${MACHINE}; then \ 88 cd ${.CURDIR}/$${entry}.${MACHINE}; \ 89 else \ 90 cd ${.CURDIR}/$${entry}; \ 91 fi; \ 92 ${MAKE} ${.TARGET:S/realinstall/install/:S/.depend/depend/}); \ 93 done 94 .endif 95 96 .MAIN: all 97 all: ${PROG} ${MANALL} _PROGSUBDIR 98 99 .if !target(clean) 100 clean: _PROGSUBDIR 101 rm -f a.out [Ee]rrs mklog core ${PROG} ${OBJS} ${CLEANFILES} 102 rm -f .depend ${MANALL} 103 .endif 104 105 .if !target(cleandir) 106 cleandir: _PROGSUBDIR 107 rm -f a.out [Ee]rrs mklog core ${PROG} ${OBJS} ${CLEANFILES} ${MANALL} 108 rm -f .depend ${MANALL} 109 .endif 110 111 # some of the rules involve .h sources, so remove them from mkdep line 112 .if !target(depend) 113 depend: .depend _PROGSUBDIR 114 .depend: ${SRCS} 115 .if defined(PROG) 116 mkdep ${MKDEP} ${CFLAGS:M-[ID]*} ${.ALLSRC:M*.c} 117 .endif 118 .endif 119 120 .if !target(install) 121 .if !target(beforeinstall) 122 beforeinstall: 123 .endif 124 .if !target(afterinstall) 125 afterinstall: 126 .endif 127 128 realinstall: _PROGSUBDIR 129 .if defined(PROG) 130 install -c ${STRIP} -o ${BINOWN} -g ${BINGRP} -m ${BINMODE} \ 131 ${PROG} ${DESTDIR}${BINDIR} 132 .endif 133 .if defined(HIDEGAME) 134 (cd ${DESTDIR}/usr/games; rm -f ${PROG}; ln -s dm ${PROG}; \ 135 chown games.bin ${PROG}) 136 .endif 137 .if defined(LINKS) && !empty(LINKS) 138 @set ${LINKS}; \ 139 while test $$# -ge 2; do \ 140 l=${DESTDIR}$$1; \ 141 shift; \ 142 t=${DESTDIR}$$1; \ 143 shift; \ 144 echo $$t -\> $$l; \ 145 rm -f $$t; \ 146 ln $$l $$t; \ 147 done; true 148 .endif 149 150 install: maninstall 151 maninstall: afterinstall 152 afterinstall: realinstall 153 realinstall: beforeinstall 154 .endif 155 156 .if !target(lint) 157 lint: ${SRCS} _PROGSUBDIR 158 .if defined(PROG) 159 @${LINT} ${LINTFLAGS} ${CFLAGS} ${.ALLSRC} | more 2>&1 160 .endif 161 .endif 162 163 .if !target(obj) 164 .if defined(NOOBJ) 165 obj: _PROGSUBDIR 166 .else 167 obj: _PROGSUBDIR 168 @cd ${.CURDIR}; rm -f obj > /dev/null 2>&1 || true; \ 169 here=`pwd`; subdir=`echo $$here | sed 's,^/usr/src/,,'`; \ 170 if test $$here != $$subdir ; then \ 171 dest=/usr/obj/$$subdir ; \ 172 echo "$$here -> $$dest"; ln -s $$dest obj; \ 173 if test -d /usr/obj -a ! -d $$dest; then \ 174 mkdir -p $$dest; \ 175 else \ 176 true; \ 177 fi; \ 178 else \ 179 true ; \ 180 dest=$$here/obj ; \ 181 echo "making $$here/obj" ; \ 182 if test ! -d obj ; then \ 183 mkdir $$here/obj; \ 184 fi ; \ 185 fi; 186 .endif 187 .endif 188 189 .if !target(tags) 190 tags: ${SRCS} _PROGSUBDIR 191 .if defined(PROG) 192 -cd ${.CURDIR}; ctags -f /dev/stdout ${.ALLSRC} | \ 193 sed "s;\${.CURDIR}/;;" > tags 194 .endif 195 .endif 196 197 .if !defined(NOMAN) 198 .include <bsd.man.mk> 199 .endif 200