summaryrefslogtreecommitdiff
path: root/gnu/usr.bin/rcs/Makefile.bsd-wrapper
blob: 7a805df735bc3094c53c893d2771344479479b2c (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
68
69
70
71
#	$OpenBSD: Makefile.bsd-wrapper,v 1.18 2003/07/31 11:30:37 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
GNUCFLAGS=	CC="${CC}" CFLAGS="${CFLAGS} ${COPTS}" \
		LDFLAGS="${LDFLAGS} ${LDSTATIC}"

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" \
	${GNUCFLAGS} \
	INSTALL_PROGRAM="${INSTALL} ${INSTALL_COPY} ${INSTALL_STRIP}" \
	sh ${.CURDIR}/configure --prefix=/usr ${CF}

config.status:
	PATH="/bin:/usr/bin:/sbin:/usr/sbin" \
	${GNUCFLAGS} \
	INSTALL_PROGRAM="${INSTALL} ${INSTALL_COPY} ${INSTALL_STRIP}" \
	sh ${.CURDIR}/configure --prefix=/usr ${CF}

.ifdef NOMAN
rcsfile.5:
	touch man/rcsfile.5
maninstall:
	@echo NOMAN is set
.else
rcsfile.5:
	(cd man ; ${MAKE} ${GNUCFLAGS} rcsfile.5)
.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