blob: c402951fa767cd0b6ff9484356b118f8ccb1e488 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
LIB_SA_DIR=${S}/arch/${MACHINE}/stand/libsa
LIBSA_DIR!= cd ${LIB_SA_DIR}; \
printf "xxx:\n\techo \$${.OBJDIR}\n" | ${MAKE} -r -s -f - xxx
LIBSA=${LIBSA_DIR}/libsa.a
$(LIBSA): .NOTMAIN __always_make_libsa
@echo making sure the libsa is up to date...
@(cd ${LIB_SA_DIR}; ${MAKE})
__always_make_libsa: .NOTMAIN
|