[BACK]Return to bsd.prog.mk CVS log [TXT][DIR] Up to [cvs.NetBSD.org] / src / share / mk

Annotation of src/share/mk/bsd.prog.mk, Revision 1.35

1.25      mycroft     1: #      from: @(#)bsd.prog.mk   5.26 (Berkeley) 6/25/91
1.35    ! cgd         2: #      $Id: bsd.prog.mk,v 1.34 1994/01/28 00:16:38 cgd Exp $
1.1       cgd         3:
                      4: .if exists(${.CURDIR}/../Makefile.inc)
                      5: .include "${.CURDIR}/../Makefile.inc"
                      6: .endif
                      7:
1.18      mycroft     8: .SUFFIXES: .out .o .c .cc .C .y .l .s .8 .7 .6 .5 .4 .3 .2 .1 .0
1.1       cgd         9:
1.25      mycroft    10: CFLAGS+=       ${COPTS}
1.1       cgd        11:
1.4       nate       12: LIBCRT0?=      /usr/lib/crt0.o
1.1       cgd        13: LIBC?=         /usr/lib/libc.a
                     14: LIBCOMPAT?=    /usr/lib/libcompat.a
1.15      cgd        15: LIBCRYPT?=     /usr/lib/libcrypt.a
1.1       cgd        16: LIBCURSES?=    /usr/lib/libcurses.a
                     17: LIBDBM?=       /usr/lib/libdbm.a
                     18: LIBDES?=       /usr/lib/libdes.a
                     19: LIBL?=         /usr/lib/libl.a
                     20: LIBKDB?=       /usr/lib/libkdb.a
                     21: LIBKRB?=       /usr/lib/libkrb.a
1.34      cgd        22: LIBKVM?=       /usr/lib/libkvm.a
1.1       cgd        23: LIBM?=         /usr/lib/libm.a
                     24: LIBMP?=                /usr/lib/libmp.a
                     25: LIBPC?=                /usr/lib/libpc.a
                     26: LIBPLOT?=      /usr/lib/libplot.a
                     27: LIBRESOLV?=    /usr/lib/libresolv.a
1.17      brezak     28: LIBRPCSVC?=    /usr/lib/librpcsvc.a
1.31      cgd        29: LIBTERMCAP?=   /usr/lib/libtermcap.a
1.1       cgd        30: LIBUTIL?=      /usr/lib/libutil.a
                     31:
                     32: .if defined(SHAREDSTRINGS)
                     33: CLEANFILES+=strings
                     34: .c.o:
                     35:        ${CC} -E ${CFLAGS} ${.IMPSRC} | xstr -c -
                     36:        @${CC} ${CFLAGS} -c x.c -o ${.TARGET}
                     37:        @rm -f x.c
1.18      mycroft    38:
                     39: .cc.o:
                     40:        ${CXX} -E ${CXXFLAGS} ${.IMPSRC} | xstr -c -
                     41:        @mv -f x.c x.cc
                     42:        @${CXX} ${CXXFLAGS} -c x.cc -o ${.TARGET}
1.26      mycroft    43:        @rm -f x.cc
1.18      mycroft    44:
                     45: .C.o:
                     46:        ${CXX} -E ${CXXFLAGS} ${.IMPSRC} | xstr -c -
                     47:        @mv -f x.c x.C
                     48:        @${CXX} ${CXXFLAGS} -c x.C -o ${.TARGET}
1.26      mycroft    49:        @rm -f x.C
1.1       cgd        50: .endif
                     51:
                     52: .if defined(PROG)
                     53: .if defined(SRCS)
                     54:
1.22      mycroft    55: OBJS+=  ${SRCS:N*.h:R:S/$/.o/g}
1.1       cgd        56:
1.4       nate       57: .if defined(LDONLY)
                     58:
1.26      mycroft    59: ${PROG}: ${LIBCRT0} ${OBJS} ${LIBC} ${DPADD}
1.32      cgd        60:        ${LD} ${LDFLAGS} ${LDSTATIC} -o ${.TARGET} ${LIBCRT0} ${OBJS} ${LIBC} ${LDADD}
1.4       nate       61:
                     62: .else defined(LDONLY)
                     63:
1.26      mycroft    64: ${PROG}: ${LIBCRT0} ${OBJS} ${LIBC} ${DPADD}
1.32      cgd        65:        ${CC} ${LDFLAGS} ${LDSTATIC} -o ${.TARGET} ${OBJS} ${LDADD}
1.1       cgd        66:
1.4       nate       67: .endif
                     68:
1.26      mycroft    69: .else
1.1       cgd        70:
1.26      mycroft    71: SRCS=  ${PROG}.c
1.1       cgd        72:
                     73: ${PROG}: ${SRCS} ${LIBC} ${DPADD}
1.32      cgd        74:        ${CC} ${LDFLAGS} ${LDSTATIC} ${CFLAGS} -o ${.TARGET} ${.CURDIR}/${SRCS} ${LDADD}
1.1       cgd        75:
                     76: MKDEP= -p
                     77:
                     78: .endif
                     79:
                     80: .if    !defined(MAN1) && !defined(MAN2) && !defined(MAN3) && \
                     81:        !defined(MAN4) && !defined(MAN5) && !defined(MAN6) && \
1.10      mycroft    82:        !defined(MAN7) && !defined(MAN8)
1.1       cgd        83: MAN1=  ${PROG}.0
                     84: .endif
                     85: .endif
1.11      mycroft    86:
1.1       cgd        87: .MAIN: all
1.26      mycroft    88: all: ${PROG}
1.1       cgd        89:
                     90: .if !target(clean)
1.26      mycroft    91: clean:
1.8       cgd        92:        rm -f a.out [Ee]rrs mklog core ${PROG} ${OBJS} ${CLEANFILES}
1.1       cgd        93: .endif
                     94:
1.27      mycroft    95: cleandir: clean
                     96:
1.1       cgd        97: .if !target(install)
                     98: .if !target(beforeinstall)
                     99: beforeinstall:
                    100: .endif
                    101: .if !target(afterinstall)
                    102: afterinstall:
                    103: .endif
                    104:
1.14      mycroft   105: .if !target(realinstall)
1.26      mycroft   106: realinstall:
1.1       cgd       107: .if defined(PROG)
1.9       cgd       108:        install ${COPY} ${STRIP} -o ${BINOWN} -g ${BINGRP} -m ${BINMODE} \
1.1       cgd       109:            ${PROG} ${DESTDIR}${BINDIR}
                    110: .endif
                    111: .if defined(HIDEGAME)
                    112:        (cd ${DESTDIR}/usr/games; rm -f ${PROG}; ln -s dm ${PROG}; \
                    113:            chown games.bin ${PROG})
                    114: .endif
1.23      mycroft   115: .endif
                    116:
1.29      mycroft   117: install: maninstall _SUBDIRUSE
1.1       cgd       118: .if defined(LINKS) && !empty(LINKS)
                    119:        @set ${LINKS}; \
                    120:        while test $$# -ge 2; do \
                    121:                l=${DESTDIR}$$1; \
                    122:                shift; \
                    123:                t=${DESTDIR}$$1; \
                    124:                shift; \
                    125:                echo $$t -\> $$l; \
                    126:                rm -f $$t; \
                    127:                ln $$l $$t; \
                    128:        done; true
1.14      mycroft   129: .endif
1.1       cgd       130:
                    131: maninstall: afterinstall
                    132: afterinstall: realinstall
                    133: realinstall: beforeinstall
                    134: .endif
                    135:
                    136: .if !target(lint)
1.26      mycroft   137: lint: ${SRCS}
1.1       cgd       138: .if defined(PROG)
                    139:        @${LINT} ${LINTFLAGS} ${CFLAGS} ${.ALLSRC} | more 2>&1
                    140: .endif
                    141: .endif
                    142:
                    143: .if !defined(NOMAN)
                    144: .include <bsd.man.mk>
                    145: .endif
1.24      mycroft   146:
                    147: .include <bsd.obj.mk>
1.26      mycroft   148: .include <bsd.dep.mk>
1.28      mycroft   149: .include <bsd.subdir.mk>

CVSweb <webmaster@jp.NetBSD.org>