blob: 9d72477b2e3d9bb65a3c012dc70cc83397292f49 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
# $OpenBSD: Makefile.bsd-wrapper1,v 1.1 1999/05/26 15:47:00 espie Exp $
#
# XXX -- GNUism
# This file's only purpose to help isolate
# the funky GNU build mechanism!
#
CPPFLAGS+= -I$(.CURDIR) -I$(.CURDIR)/../include -I$(.OBJDIR)
needed-list: config.status
${MAKE} ${GNUCFLAGS} CC=${CC} needed-list
config.status: Makefile.in configure
PATH="/bin:/usr/bin:/sbin:/usr/sbin" \
INSTALL_PROGRAM="${INSTALL} ${INSTALL_COPY} ${INSTALL_STRIP}" \
/bin/sh ${.CURDIR}/configure \
--prefix=/usr --with-local-prefix=/usr ${CF} \
&& touch config.status
|