blob: b7e2e67909197295d9d28168b38e461e98a2a5ab (
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
|
# $OpenBSD: Makefile.bsd-wrapper,v 1.4 1998/07/05 07:30:02 downsj Exp $
SUBDIR=bcwrap
MAN= doc/bc.1 doc/dc.1
LDFLAGS+= -s ${LDSTATIC}
GNUCFLAGS= CFLAGS="${CFLAGS}" LDFLAGS="${LDFLAGS}"
all: config.status
${MAKE} ${GNUCFLAGS}
cd ${.CURDIR}/bcwrap && ${MAKE}
.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
INSTALL_PROGRAM="${INSTALL} ${INSTALL_COPY} ${INSTALL_STRIP}" \
CFLAGS="${CFLAGS}" \
sh ${.CURDIR}/configure --prefix=${PREFIX}/usr --infodir=${PREFIX}/usr/share/info ${CF}
config.status:
INSTALL_PROGRAM="${INSTALL} ${INSTALL_COPY} ${INSTALL_STRIP}" \
CFLAGS="${CFLAGS}" \
sh ${.CURDIR}/configure --prefix=${PREFIX}/usr --infodir=${PREFIX}/usr/share/info ${CF}
.ifdef NOMAN
maninstall:
@echo NOMAN is set
.endif
install: maninstall
${MAKE} ${GNUCFLAGS} prefix=${DESTDIR}/usr \
bindir=${DESTDIR}/usr/bin infodir=${PREFIX}/usr/share/info install
cd ${.CURDIR}/bcwrap && ${MAKE} install
clean cleandir:
-@if [ -e Makefile ]; then ${MAKE} distclean; fi
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
|