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

Annotation of src/usr.bin/calendar/Makefile, Revision 1.3

1.3     ! millert     1: #      $OpenBSD: Makefile,v 1.2 1996/06/26 05:31:44 deraadt Exp $
        !             2: #      from: @(#)Makefile      8.1 (Berkeley) 6/6/93
1.1       deraadt     3:
                      4: PROG=  calendar
1.3     ! millert     5: SRCS=   calendar.c io.c day.c ostern.c paskha.c
        !             6: INTER= de_DE.ISO_8859-1 hr_HR.ISO_8859-2 ru_SU.KOI8-R
1.1       deraadt     7:
                      8: beforeinstall:
                      9:        install -c -o ${BINOWN} -g ${BINGRP} -m 444 \
                     10:            ${.CURDIR}/calendars/calendar.* ${DESTDIR}/usr/share/calendar
1.3     ! millert    11: .for lang in ${INTER}
        !            12:        @test -d ${DESTDIR}/usr/share/calendar/${lang} || \
        !            13:                mkdir ${DESTDIR}/usr/share/calendar/${lang}
        !            14:        install -c -o ${BINOWN} -g ${BINGRP} -m 444 \
        !            15:                ${.CURDIR}/calendars/${lang}/calendar.* \
        !            16:                ${DESTDIR}/usr/share/calendar/${lang};
        !            17: .endfor
1.1       deraadt    18:
                     19: .include <bsd.prog.mk>