diff options
Diffstat (limited to 'gnu/lib/csu/Makefile')
-rw-r--r-- | gnu/lib/csu/Makefile | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/gnu/lib/csu/Makefile b/gnu/lib/csu/Makefile index e1224ca..1231443 100644 --- a/gnu/lib/csu/Makefile +++ b/gnu/lib/csu/Makefile @@ -1,5 +1,7 @@ # $FreeBSD$ +.MAIN: all + .include <src.opts.mk> MK_SSP= no @@ -74,4 +76,11 @@ realinstall: ${file} ${DESTDIR}${LIBDIR}/${file} .endfor +.if ${MK_STAGING} == "yes" +STAGE_DIR= ${STAGE_LIBDIR} +STAGE_FILES= ${OBJS} ${SOBJS} ${TGTOBJS} +staging: stage_files +.endif +.NOPATH: ${CLEANFILES} + .include <bsd.lib.mk> |