xref: /original-bsd/lib/csu/mips/Makefile (revision 6093a5ae)
1#	@(#)Makefile	5.1 (Berkeley) 07/19/92
2
3CFLAGS=	-O -DLIBC_SCCS
4OBJS=	crt0.o
5CLEANFILES+=	gmon.o mon.o moncrt0.o core a.out
6
7all: ${OBJS}
8
9crt0.o: crt0.s
10	${CC} -c -DCRT0 ${.ALLSRC}
11
12install:
13	install -o ${BINOWN} -g ${BINGRP} -m 444 ${OBJS} \
14	    ${DESTDIR}/usr/lib
15
16depend lint tags:
17
18.include <bsd.prog.mk>
19