17 lines
393 B
Makefile
17 lines
393 B
Makefile
# $NetBSD: Makefile,v 1.23 2006/05/19 19:11:12 christos Exp $
|
|
|
|
ELFSIZE= 64
|
|
|
|
#Uncomment the next line to enable the new .init fallthru
|
|
CPPFLAGS+= -I${.CURDIR}
|
|
|
|
OBJS+= crtfm.o
|
|
|
|
.include "${.CURDIR}/../common_elf/Makefile.inc"
|
|
|
|
crtfm.o: crtfm.c
|
|
@echo "${COMPILE.c} ${.ALLSRC} -o ${.TARGET}"
|
|
@${COMPILE.c} ${.ALLSRC} -o ${.TARGET}.o
|
|
@${LD} -x -r -o ${.TARGET} ${.TARGET}.o
|
|
@rm -f ${.TARGET}.o
|