[BACK]Return to Makefile CVS log [TXT][DIR] Up to [local] / sys / dev / microcode / fxp

Annotation of sys/dev/microcode/fxp/Makefile, Revision 1.1

1.1     ! nbrk        1: # $OpenBSD: Makefile,v 1.6 2007/08/01 21:42:43 deraadt Exp $
        !             2:
        !             3: NOPROG=
        !             4: NOMAN=
        !             5: CC=${HOSTCC}
        !             6:
        !             7: # PCI capable systems only
        !             8: .if (${MACHINE} == "i386") || (${MACHINE} == "amd64") || \
        !             9:     (${MACHINE} == "alpha") || (${MACHINE} == "sparc64") || \
        !            10:     (${MACHINE_ARCH} == "powerpc") || (${MACHINE} == "hppa") || \
        !            11:     (${MACHINE} == "hppa64") || (${MACHINE} == "sgi")
        !            12:
        !            13: FIRM=  fxp-d101a fxp-d101b0 fxp-d101ma fxp-d101s fxp-d102 fxp-d102c fxp-d102e
        !            14:
        !            15: PROG=  build
        !            16:
        !            17: CLEANFILES+= ${FIRM} ${PROG}
        !            18:
        !            19: all: ${FIRM}
        !            20:
        !            21: ${FIRM}: build
        !            22:        ${.OBJDIR}/build
        !            23:
        !            24: realinstall:
        !            25:
        !            26: afterinstall:
        !            27:        ${INSTALL} -c -o ${BINOWN} -g ${BINGRP} -m 644 \
        !            28:            ${FIRM} ${DESTDIR}/etc/firmware
        !            29:        ${INSTALL} -c -o ${BINOWN} -g ${BINGRP} -m 644 \
        !            30:            ${.CURDIR}/fxp-license ${DESTDIR}/etc/firmware
        !            31:
        !            32: .endif
        !            33:
        !            34: .include <bsd.prog.mk>

CVSweb