NetBSD/lib/csu/c++/Makefile

18 lines
326 B
Makefile
Raw Normal View History

# $Id: Makefile,v 1.2 1994/02/10 01:10:01 cgd Exp $
1994-01-07 22:15:31 +03:00
CFLAGS+= -DLIBC_SCCS -fpic
OBJS= c++rt0.o
all: ${OBJS}
c++rt0.o: c++rt0.c
${CC} ${CFLAGS} -c ${.ALLSRC}
@${LD} -x -r ${.TARGET}
@mv a.out ${.TARGET}
install:
install ${COPY} -o ${BINOWN} -g ${BINGRP} -m 444 ${OBJS} \
${DESTDIR}/usr/lib
.include <bsd.prog.mk>