386BSD 0.1 development
authorWilliam F. Jolitz <wjolitz@soda.berkeley.edu>
Mon, 1 Jul 1991 18:21:31 +0000 (10:21 -0800)
committerWilliam F. Jolitz <wjolitz@soda.berkeley.edu>
Mon, 1 Jul 1991 18:21:31 +0000 (10:21 -0800)
Work on file usr/othersrc/share/mk/bsd.lib.mk
Work on file usr/othersrc/share/mk/bsd.prog.mk

Co-Authored-By: Lynne Greer Jolitz <ljolitz@cardio.ucsf.edu>
Synthesized-from: 386BSD-0.1

usr/othersrc/share/mk/bsd.lib.mk [new file with mode: 0644]
usr/othersrc/share/mk/bsd.prog.mk [new file with mode: 0644]

diff --git a/usr/othersrc/share/mk/bsd.lib.mk b/usr/othersrc/share/mk/bsd.lib.mk
new file mode 100644 (file)
index 0000000..5124b1f
--- /dev/null
@@ -0,0 +1,158 @@
+#      @(#)bsd.lib.mk  5.26 (Berkeley) 5/2/91
+
+.if exists(${.CURDIR}/../Makefile.inc)
+.include "${.CURDIR}/../Makefile.inc"
+.endif
+
+LIBDIR?=       /usr/lib
+LINTLIBDIR?=   /usr/libdata/lint
+LIBGRP?=       bin
+LIBOWN?=       bin
+LIBMODE?=      444
+
+STRIP?=        -s
+
+BINGRP?=       bin
+BINOWN?=       bin
+BINMODE?=      555
+
+.MAIN: all
+
+# prefer .s to a .c, add .po, remove stuff not used in the BSD libraries
+.SUFFIXES:
+.SUFFIXES: .out .o .po .s .c .f .y .l .8 .7 .6 .5 .4 .3 .2 .1 .0
+
+.8.0 .7.0 .6.0 .5.0 .4.0 .3.0 .2.0 .1.0:
+       nroff -mandoc ${.IMPSRC} > ${.TARGET}
+
+.c.o:
+       ${CC} ${CFLAGS} -c ${.IMPSRC} 
+       @${LD} -x -r ${.TARGET}
+       @mv a.out ${.TARGET}
+
+.c.po:
+       ${CC} -p ${CFLAGS} -c ${.IMPSRC} -o ${.TARGET}
+       @${LD} -X -r ${.TARGET}
+       @mv a.out ${.TARGET}
+
+.s.o:
+       ${CPP} -E ${CFLAGS:M-[ID]*} ${AINC} ${.IMPSRC} | \
+           ${AS} -o ${.TARGET}
+       @${LD} -x -r ${.TARGET}
+       @mv a.out ${.TARGET}
+
+.s.po:
+       ${CPP} -E -DPROF ${CFLAGS:M-[ID]*} ${AINC} ${.IMPSRC} | \
+           ${AS} -o ${.TARGET}
+       @${LD} -X -r ${.TARGET}
+       @mv a.out ${.TARGET}
+
+MANALL=        ${MAN1} ${MAN2} ${MAN3} ${MAN4} ${MAN5} ${MAN6} ${MAN7} ${MAN8}
+
+.if !defined(NOPROFILE)
+_LIBS=lib${LIB}.a lib${LIB}_p.a
+.else
+_LIBS=lib${LIB}.a
+.endif
+
+all: ${_LIBS} ${MANALL}# llib-l${LIB}.ln
+
+OBJS+= ${SRCS:R:S/$/.o/g}
+
+lib${LIB}.a:: ${OBJS}
+       @echo building standard ${LIB} library
+       @rm -f lib${LIB}.a
+       @${AR} cTq lib${LIB}.a `lorder ${OBJS} | tsort` ${LDADD}
+       ranlib lib${LIB}.a
+
+POBJS+=        ${OBJS:.o=.po}
+lib${LIB}_p.a:: ${POBJS}
+       @echo building profiled ${LIB} library
+       @rm -f lib${LIB}_p.a
+       @${AR} cTq lib${LIB}_p.a `lorder ${POBJS} | tsort` ${LDADD}
+       ranlib lib${LIB}_p.a
+
+llib-l${LIB}.ln: ${SRCS}
+       ${LINT} -C${LIB} ${CFLAGS} ${.ALLSRC:M*.c}
+
+.if !target(clean)
+clean:
+       rm -f a.out Errs errs mklog core ${CLEANFILES} ${OBJS} ${POBJS} \
+           profiled/*.o lib${LIB}.a lib${LIB}_p.a llib-l${LIB}.ln
+.endif
+
+.if !target(cleandir)
+cleandir:
+       rm -f a.out Errs errs mklog core ${CLEANFILES} ${OBJS} ${POBJS} \
+           profiled/*.o lib${LIB}.a lib${LIB}_p.a llib-l${LIB}.ln
+       rm -f ${MANALL} ${.CURDIR}/tags .depend
+.endif
+
+.if !target(depend)
+depend: .depend
+.depend: ${SRCS}
+       mkdep ${CFLAGS:M-[ID]*} ${AINC} ${.ALLSRC}
+       @(TMP=/tmp/_depend$$$$; \
+           sed -e 's/^\([^\.]*\).o:/\1.o \1.po:/' < .depend > $$TMP; \
+           mv $$TMP .depend)
+.endif
+
+.if !target(install)
+.if !target(beforeinstall)
+beforeinstall:
+.endif
+
+realinstall: beforeinstall
+       ranlib lib${LIB}.a
+       install -o ${LIBOWN} -g ${LIBGRP} -m ${LIBMODE} lib${LIB}.a \
+           ${DESTDIR}${LIBDIR}
+       ${RANLIB} -t ${DESTDIR}${LIBDIR}/lib${LIB}.a
+       ranlib lib${LIB}_p.a
+       install -o ${LIBOWN} -g ${LIBGRP} -m ${LIBMODE} \
+           lib${LIB}_p.a ${DESTDIR}${LIBDIR}
+       ${RANLIB} -t ${DESTDIR}${LIBDIR}/lib${LIB}_p.a
+#      install -c -o ${LIBOWN} -g ${LIBGRP} -m ${LIBMODE} \
+#          llib-l${LIB}.ln ${DESTDIR}${LINTLIBDIR}
+.if defined(LINKS) && !empty(LINKS)
+       @set ${LINKS}; \
+       while test $$# -ge 2; do \
+               l=${DESTDIR}$$1; \
+               shift; \
+               t=${DESTDIR}$$1; \
+               shift; \
+               echo $$t -\> $$l; \
+               rm -f $$t; \
+               ln $$l $$t; \
+       done; true
+.endif
+
+install: afterinstall
+afterinstall: realinstall maninstall
+.endif
+
+.if !target(lint)
+lint:
+.endif
+
+.if !target(tags)
+tags: ${SRCS}
+       -cd ${.CURDIR}; ctags -f /dev/stdout ${.ALLSRC:M*.c} | \
+           sed "s;\${.CURDIR}/;;" > tags
+.endif
+
+.include <bsd.man.mk>
+.if !target(obj)
+.if defined(NOOBJ)
+obj:
+.else
+obj:
+       @cd ${.CURDIR}; rm -rf obj; \
+       here=`pwd`; dest=/usr/obj/`echo $$here | sed 's,/usr/src/,,'`; \
+       echo "$$here -> $$dest"; ln -s $$dest obj; \
+       if test -d /usr/obj -a ! -d $$dest; then \
+               mkdir -p $$dest; \
+       else \
+               true; \
+       fi;
+.endif
+.endif
diff --git a/usr/othersrc/share/mk/bsd.prog.mk b/usr/othersrc/share/mk/bsd.prog.mk
new file mode 100644 (file)
index 0000000..9957627
--- /dev/null
@@ -0,0 +1,177 @@
+#      @(#)bsd.prog.mk 5.26 (Berkeley) 6/25/91
+
+.if exists(${.CURDIR}/../Makefile.inc)
+.include "${.CURDIR}/../Makefile.inc"
+.endif
+
+.SUFFIXES: .out .o .c .y .l .s .8 .7 .6 .5 .4 .3 .2 .1 .0
+
+.8.0 .7.0 .6.0 .5.0 .4.0 .3.0 .2.0 .1.0:
+       nroff -mandoc ${.IMPSRC} > ${.TARGET}
+
+CFLAGS+=${COPTS}
+
+STRIP?=        -s
+
+BINGRP?=       bin
+BINOWN?=       bin
+BINMODE?=      555
+
+LIBC?=         /usr/lib/libc.a
+LIBCOMPAT?=    /usr/lib/libcompat.a
+LIBCURSES?=    /usr/lib/libcurses.a
+LIBDBM?=       /usr/lib/libdbm.a
+LIBDES?=       /usr/lib/libdes.a
+LIBL?=         /usr/lib/libl.a
+LIBKDB?=       /usr/lib/libkdb.a
+LIBKRB?=       /usr/lib/libkrb.a
+LIBM?=         /usr/lib/libm.a
+LIBMP?=                /usr/lib/libmp.a
+LIBPC?=                /usr/lib/libpc.a
+LIBPLOT?=      /usr/lib/libplot.a
+LIBRESOLV?=    /usr/lib/libresolv.a
+LIBRPC?=       /usr/lib/sunrpc.a
+LIBTERM?=      /usr/lib/libterm.a
+LIBUTIL?=      /usr/lib/libutil.a
+
+.if defined(SHAREDSTRINGS)
+CLEANFILES+=strings
+.c.o:
+       ${CC} -E ${CFLAGS} ${.IMPSRC} | xstr -c -
+       @${CC} ${CFLAGS} -c x.c -o ${.TARGET}
+       @rm -f x.c
+.endif
+
+.if defined(PROG)
+.if defined(SRCS)
+
+OBJS+=  ${SRCS:R:S/$/.o/g}
+
+${PROG}: ${OBJS} ${LIBC} ${DPADD}
+       ${CC} ${LDFLAGS} -o ${.TARGET} ${OBJS} ${LDADD}
+
+.else defined(PROG)
+
+SRCS= ${PROG}.c
+
+${PROG}: ${SRCS} ${LIBC} ${DPADD}
+       ${CC} ${CFLAGS} -o ${.TARGET} ${.CURDIR}/${SRCS} ${LDADD}
+
+MKDEP= -p
+
+.endif
+
+.if    !defined(MAN1) && !defined(MAN2) && !defined(MAN3) && \
+       !defined(MAN4) && !defined(MAN5) && !defined(MAN6) && \
+       !defined(MAN7) && !defined(MAN8) && !defined(NOMAN)
+MAN1=  ${PROG}.0
+.endif
+.endif
+MANALL=        ${MAN1} ${MAN2} ${MAN3} ${MAN4} ${MAN5} ${MAN6} ${MAN7} ${MAN8}
+
+_PROGSUBDIR: .USE
+.if defined(SUBDIR) && !empty(SUBDIR)
+       @for entry in ${SUBDIR}; do \
+               (echo "===> $$entry"; \
+               if test -d ${.CURDIR}/$${entry}.${MACHINE}; then \
+                       cd ${.CURDIR}/$${entry}.${MACHINE}; \
+               else \
+                       cd ${.CURDIR}/$${entry}; \
+               fi; \
+               ${MAKE} ${.TARGET:S/realinstall/install/:S/.depend/depend/}); \
+       done
+.endif
+
+.MAIN: all
+all: ${PROG} ${MANALL} _PROGSUBDIR
+
+.if !target(clean)
+clean: _PROGSUBDIR
+       rm -f a.out [Ee]rrs mklog core ${PROG} ${OBJS} ${CLEANFILES}
+.endif
+
+.if !target(cleandir)
+cleandir: _PROGSUBDIR
+       rm -f a.out [Ee]rrs mklog core ${PROG} ${OBJS} ${CLEANFILES}
+       rm -f .depend ${MANALL}
+.endif
+
+# some of the rules involve .h sources, so remove them from mkdep line
+.if !target(depend)
+depend: .depend _PROGSUBDIR
+.depend: ${SRCS}
+.if defined(PROG)
+       mkdep ${MKDEP} ${CFLAGS:M-[ID]*} ${.ALLSRC:M*.c}
+.endif
+.endif
+
+.if !target(install)
+.if !target(beforeinstall)
+beforeinstall:
+.endif
+.if !target(afterinstall)
+afterinstall:
+.endif
+
+realinstall: _PROGSUBDIR
+.if defined(PROG)
+       install ${STRIP} -o ${BINOWN} -g ${BINGRP} -m ${BINMODE} \
+           ${PROG} ${DESTDIR}${BINDIR}
+.endif
+.if defined(HIDEGAME)
+       (cd ${DESTDIR}/usr/games; rm -f ${PROG}; ln -s dm ${PROG}; \
+           chown games.bin ${PROG})
+.endif
+.if defined(LINKS) && !empty(LINKS)
+       @set ${LINKS}; \
+       while test $$# -ge 2; do \
+               l=${DESTDIR}$$1; \
+               shift; \
+               t=${DESTDIR}$$1; \
+               shift; \
+               echo $$t -\> $$l; \
+               rm -f $$t; \
+               ln $$l $$t; \
+       done; true
+.endif
+
+install: maninstall
+maninstall: afterinstall
+afterinstall: realinstall
+realinstall: beforeinstall
+.endif
+
+.if !target(lint)
+lint: ${SRCS} _PROGSUBDIR
+.if defined(PROG)
+       @${LINT} ${LINTFLAGS} ${CFLAGS} ${.ALLSRC} | more 2>&1
+.endif
+.endif
+
+.if !target(obj)
+.if defined(NOOBJ)
+obj: _PROGSUBDIR
+.else
+obj: _PROGSUBDIR
+       @cd ${.CURDIR}; rm -rf obj; \
+       here=`pwd`; dest=/usr/obj/`echo $$here | sed 's,/usr/src/,,'`; \
+       echo "$$here -> $$dest"; ln -s $$dest obj; \
+       if test -d /usr/obj -a ! -d $$dest; then \
+               mkdir -p $$dest; \
+       else \
+               true; \
+       fi;
+.endif
+.endif
+
+.if !target(tags)
+tags: ${SRCS} _PROGSUBDIR
+.if defined(PROG)
+       -cd ${.CURDIR}; ctags -f /dev/stdout ${.ALLSRC} | \
+           sed "s;\${.CURDIR}/;;" > tags
+.endif
+.endif
+
+.if !defined(NOMAN)
+.include <bsd.man.mk>
+.endif