blob: 6029fb2c91b171b0f61eb201c5fedfad876f2f74 (
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
|
# $Id: Makefile.bsd-wrapper,v 1.5 1995/12/20 18:39:20 deraadt Exp $
MAN= man/cvs.1 man/cvs.5 man/cvsbug.8 man/cvsinit.8 man/mkmodules.1
all: config.status
${MAKE}
.FORCE: .IGNORE
config: .FORCE
sh ${.CURDIR}/configure --prefix=/usr
config.status:
sh ${.CURDIR}/configure --prefix=/usr
install: maninstall
${MAKE} prefix=${DESTDIR}/usr infodir=${DESTDIR}/usr/share/info \
INSTALL_MAN= install
clean cleandir:
-@if [ -e Makefile ]; then ${MAKE} realclean; fi
depend:
# Nothing here so far...
lint:
# Nothing here so far...
tags:
# Nothing here so far...
.include <bsd.obj.mk>
.include <bsd.subdir.mk>
.include <bsd.man.mk>
|