blob: 5e7a3f2db65e8cf5a542966677b127aa10ecf4ea (
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
|
# $OpenBSD: Makefile.bsd-wrapper,v 1.1 1997/06/24 21:28:14 provos Exp $
GNUCFLAGS= CFLAGS="${CFLAGS} ${COPTS}"
all: config.status
${MAKE} ${GNUCFLAGS} BISON=yacc CC=${CC} LDFLAGS=${LDSTATIC}
.FORCE: .IGNORE
config: .FORCE
-rm -f config.cache
/bin/sh ${.CURDIR}/configure --with-gnu-as --with-gnu-ld \
--prefix=/usr --local-prefix=/usr
config.status: Makefile.in configure
/bin/sh ${.CURDIR}/configure --with-gnu-as --with-gnu-ld \
--prefix=/usr --local-prefix=/usr && touch config.status
clean cleandir:
-@if [ -e Makefile ]; then ${MAKE} distclean; fi
depend:
# Nothing here so far...
.include <bsd.obj.mk>
.include <bsd.subdir.mk>
.include <bsd.man.mk>
|