12 lines
341 B
Plaintext
12 lines
341 B
Plaintext
#
|
|
# $NetBSD: Make.static,v 1.1 2001/05/18 00:16:38 fredette Exp $
|
|
#
|
|
# This is logically appended to some other makefile, i.e.
|
|
# using: make -f Makefile -f $(OUTDIR)/Make.static ...
|
|
STRIP_CMD=strip
|
|
|
|
${OUTDIR}/${PROG} : ${OBJS} ${LIBC} ${DPADD}
|
|
${CC} -static ${LDFLAGS} -o ${OUTDIR}/${PROG} ${OBJS} ${LDADD}
|
|
${STRIP_CMD} ${OUTDIR}/${PROG}
|
|
|