[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.41

1.25      mycroft     1: #      from: @(#)bsd.prog.mk   5.26 (Berkeley) 6/25/91
1.41    ! cgd         2: #      $Id: bsd.prog.mk,v 1.40 1994/05/24 09:37:30 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.39      deraadt    29: LIBSKEY?=      /usr/lib/libskey.a
1.31      cgd        30: LIBTERMCAP?=   /usr/lib/libtermcap.a
1.1       cgd        31: LIBUTIL?=      /usr/lib/libutil.a
                     32:
                     33: .if defined(SHAREDSTRINGS)
                     34: CLEANFILES+=strings
                     35: .c.o:
                     36:        ${CC} -E ${CFLAGS} ${.IMPSRC} | xstr -c -
                     37:        @${CC} ${CFLAGS} -c x.c -o ${.TARGET}
                     38:        @rm -f x.c
1.18      mycroft    39:
                     40: .cc.o:
                     41:        ${CXX} -E ${CXXFLAGS} ${.IMPSRC} | xstr -c -
                     42:        @mv -f x.c x.cc
                     43:        @${CXX} ${CXXFLAGS} -c x.cc -o ${.TARGET}
1.26      mycroft    44:        @rm -f x.cc
1.18      mycroft    45:
                     46: .C.o:
                     47:        ${CXX} -E ${CXXFLAGS} ${.IMPSRC} | xstr -c -
                     48:        @mv -f x.c x.C
                     49:        @${CXX} ${CXXFLAGS} -c x.C -o ${.TARGET}
1.26      mycroft    50:        @rm -f x.C
1.1       cgd        51: .endif
                     52:
1.38      jtc        53:
1.1       cgd        54: .if defined(PROG)
1.40      cgd        55: SRCS?= ${PROG}.c
1.22      mycroft    56: OBJS+=  ${SRCS:N*.h:R:S/$/.o/g}
1.1       cgd        57:
1.4       nate       58: .if defined(LDONLY)
                     59:
1.26      mycroft    60: ${PROG}: ${LIBCRT0} ${OBJS} ${LIBC} ${DPADD}
1.32      cgd        61:        ${LD} ${LDFLAGS} ${LDSTATIC} -o ${.TARGET} ${LIBCRT0} ${OBJS} ${LIBC} ${LDADD}
1.4       nate       62:
                     63: .else defined(LDONLY)
                     64:
1.26      mycroft    65: ${PROG}: ${LIBCRT0} ${OBJS} ${LIBC} ${DPADD}
1.32      cgd        66:        ${CC} ${LDFLAGS} ${LDSTATIC} -o ${.TARGET} ${OBJS} ${LDADD}
1.1       cgd        67:
                     68: .endif
                     69:
                     70: .if    !defined(MAN1) && !defined(MAN2) && !defined(MAN3) && \
                     71:        !defined(MAN4) && !defined(MAN5) && !defined(MAN6) && \
1.10      mycroft    72:        !defined(MAN7) && !defined(MAN8)
1.1       cgd        73: MAN1=  ${PROG}.0
                     74: .endif
                     75: .endif
1.11      mycroft    76:
1.1       cgd        77: .MAIN: all
1.26      mycroft    78: all: ${PROG}
1.1       cgd        79:
                     80: .if !target(clean)
1.26      mycroft    81: clean:
1.36      mycroft    82:        rm -f a.out [Ee]rrs mklog core *.core ${PROG} ${OBJS} ${CLEANFILES}
1.1       cgd        83: .endif
                     84:
1.27      mycroft    85: cleandir: clean
                     86:
1.1       cgd        87: .if !target(install)
                     88: .if !target(beforeinstall)
                     89: beforeinstall:
                     90: .endif
                     91: .if !target(afterinstall)
                     92: afterinstall:
                     93: .endif
                     94:
1.14      mycroft    95: .if !target(realinstall)
1.26      mycroft    96: realinstall:
1.1       cgd        97: .if defined(PROG)
1.9       cgd        98:        install ${COPY} ${STRIP} -o ${BINOWN} -g ${BINGRP} -m ${BINMODE} \
1.1       cgd        99:            ${PROG} ${DESTDIR}${BINDIR}
                    100: .endif
                    101: .if defined(HIDEGAME)
1.41    ! cgd       102:        (cd ${DESTDIR}/usr/games; rm -f ${PROG}; ln -s dm ${PROG})
1.1       cgd       103: .endif
1.23      mycroft   104: .endif
                    105:
1.29      mycroft   106: install: maninstall _SUBDIRUSE
1.1       cgd       107: .if defined(LINKS) && !empty(LINKS)
                    108:        @set ${LINKS}; \
                    109:        while test $$# -ge 2; do \
                    110:                l=${DESTDIR}$$1; \
                    111:                shift; \
                    112:                t=${DESTDIR}$$1; \
                    113:                shift; \
                    114:                echo $$t -\> $$l; \
                    115:                rm -f $$t; \
                    116:                ln $$l $$t; \
                    117:        done; true
1.14      mycroft   118: .endif
1.1       cgd       119:
                    120: maninstall: afterinstall
                    121: afterinstall: realinstall
                    122: realinstall: beforeinstall
                    123: .endif
                    124:
                    125: .if !target(lint)
1.26      mycroft   126: lint: ${SRCS}
1.1       cgd       127: .if defined(PROG)
                    128:        @${LINT} ${LINTFLAGS} ${CFLAGS} ${.ALLSRC} | more 2>&1
                    129: .endif
                    130: .endif
                    131:
                    132: .if !defined(NOMAN)
                    133: .include <bsd.man.mk>
                    134: .endif
1.24      mycroft   135:
                    136: .include <bsd.obj.mk>
1.26      mycroft   137: .include <bsd.dep.mk>
1.28      mycroft   138: .include <bsd.subdir.mk>

CVSweb <webmaster@jp.NetBSD.org>