Makefile revision 39165
1#	$Id:$
2
3OBJS=		btxcsu.o btxsys.o btxv86.o
4LDFLAGS+=	-elf
5CLEANFILES+=	crt0.o
6INTERNALLIB=	true
7NOMAN=		true
8NOPIC=		true
9NOPROFILE=	true
10
11all: crt0.o
12
13crt0.o: ${OBJS}
14	${LD} ${LDFLAGS} -i -o ${.TARGET} ${OBJS}
15
16.include <bsd.lib.mk>
17