summaryrefslogtreecommitdiff
path: root/sys/arch/mvme68k/stand/bugcrt/Makefile
blob: 9efe6b2d0924045d1dbcbb1c6829451e705e5302 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#    $Id: Makefile,v 1.1 1995/10/18 10:44:45 deraadt Exp $

CFLAGS+=-I${.CURDIR}/../../include

.include "${MACHINE_ARCH}/Makefile.inc"

.PATH:  ${.CURDIR}/${MACHINE_ARCH}

OBJS=bugcrt.o

CLEANFILES+=a.out

all:	${OBJS}

bugcrt.o: bugcrt.c
	${CC} ${CFLAGS} -c -O ${.ALLSRC}
	${LD} -x -r ${.TARGET}
	mv a.out ${.TARGET}

install:

lint tags:

.include <bsd.prog.mk>