blob: 256db80da89b9958649cbef35d194031dbda0725 (
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.7 1996/01/01 23:51:27 deraadt Exp $
MAN= man/cvs.1 man/cvs.5 man/cvsbug.8 man/cvsinit.8 man/mkmodules.1
all: config.status
${MAKE} LDFLAGS=${LDSTATIC}
.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 \
bindir=${DESTDIR}/usr/bin 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>
|