blob: 1d780fe931e18ba4782c3816320a08a8cdbc48cc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
# $OpenBSD: Makefile.inc,v 1.1 2001/06/26 21:58:04 smurph Exp $
LIB_BUG_DIR=${S}/arch/mvmeppc/stand/libbug
LIBBUG_DIR!= cd ${LIB_BUG_DIR}; \
printf "xxx:\n\techo \$${.OBJDIR}\n" | ${MAKE} -r -s -f - xxx
LIBBUG=${LIBBUG_DIR}/libbug.a
$(LIBBUG): .NOTMAIN __always_make_libbug
@echo making sure the libbug is up to date...
@(cd ${LIB_BUG_DIR}; ${MAKE})
__always_make_libbug: .NOTMAIN
|