blob: 32cbc8d03d7ffa04372b26ce872164567e1c8304 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
|
# $OpenBSD: Makefile.bsd-wrapper,v 1.14 1998/10/18 20:02:32 millert Exp $
MAN= man/ci.1 man/co.1 man/ident.1 man/merge.1 man/rcs.1 man/rcsclean.1 \
man/rcsdiff.1 man/rcsfile.5 man/rcsfreeze.1 man/rcsintro.1 \
man/rcsmerge.1 man/rlog.1
CLEANFILES= man/rcsfile.5 src/conf.h
LDFLAGS+= -s ${LDSTATIC}
GNUCFLAGS= CFLAGS="${CFLAGS}" LDFLAGS="${LDFLAGS}"
all: config.status rcsfile.5
${MAKE} ${GNUCFLAGS}
.FORCE: .IGNORE
.include <bsd.own.mk>
.ifdef GLOBAL_AUTOCONF_CACHE
CF= --cache-file=${GLOBAL_AUTOCONF_CACHE}
.else
CF=
.endif
config: .FORCE
.ifndef GLOBAL_AUTOCONF_CACHE
-rm -f config.cache
.endif
PATH="/bin:/usr/bin:/sbin:/usr/sbin" \
INSTALL_PROGRAM="${INSTALL} ${INSTALL_COPY} ${INSTALL_STRIP}" \
sh ${.CURDIR}/configure --with-diffutils --prefix=/usr ${CF}
config.status:
PATH="/bin:/usr/bin:/sbin:/usr/sbin" \
INSTALL_PROGRAM="${INSTALL} ${INSTALL_COPY} ${INSTALL_STRIP}" \
sh ${.CURDIR}/configure --with-diffutils --prefix=/usr ${CF}
rcsfile.5:
(cd man ; ${MAKE} ${GNUCFLAGS} rcsfile.5)
.ifdef NOMAN
maninstall:
@echo NOMAN is set
.endif
install: maninstall
${MAKE} ${GNUCFLAGS} prefix=${DESTDIR}/usr \
bindir=${DESTDIR}/usr/bin INSTALL_MAN= install
install ${INSTALL_COPY} -o ${BINOWN} -g ${BINGRP} -m ${BINMODE} \
${.CURDIR}/src/rcsfreeze.sh ${DESTDIR}/usr/bin/rcsfreeze
clean cleandir:
-@if [ -e Makefile ]; then ${MAKE} distclean; fi
rm -f ${CLEANFILES}
depend:
# Nothing here so far...
lint:
# Nothing here so far...
tags:
# Nothing here so far...
.include <bsd.obj.mk>
.include <bsd.subdir.mk>
.ifndef NOMAN
.include <bsd.man.mk>
.endif
|