[BACK]Return to Makefile CVS log [TXT][DIR] Up to [local] / src / usr.bin / bgplg

Annotation of src/usr.bin/bgplg/Makefile, Revision 1.1

1.1     ! reyk        1: #      $OpenBSD$
        !             2:
        !             3: .include <bsd.own.mk>
        !             4:
        !             5: SUBDIR=                bgplg bgplgsh bgpctl ping traceroute
        !             6:
        !             7: INCFILES=      bgplg.head \
        !             8:                bgplg.foot \
        !             9:                bgplg.css
        !            10:
        !            11: WWWDIR=                ${DESTDIR}/var/www/htdocs/bgplg
        !            12: WWWFILES=      openbgpd.gif \
        !            13:                index.html
        !            14:
        !            15: distribution:
        !            16:        for i in ${INCFILES}; do \
        !            17:                ${INSTALL} -C -o root -g wheel -m 0644 $$i ${DESTDIR}/var/www/conf/; \
        !            18:        done
        !            19:        ${INSTALL} -d -o root -g wheel -m 0755 ${WWWDIR}
        !            20:        for i in ${WWWFILES}; do \
        !            21:                ${INSTALL} -C -o root -g wheel -m 0644 $$i ${WWWDIR}; \
        !            22:        done
        !            23:
        !            24: .include <bsd.subdir.mk>