blob: 05e4338be31767ddd238bf0a55cfe4d97db3bea6 (
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
25
26
27
28
29
|
# $OpenBSD: Makefile,v 1.6 1999/09/27 19:30:00 smurph Exp $
#
# DO NOT OPTMIZE bugcrt (i.e. no "-O2")
#
S=${.CURDIR}/../../../..
CFLAGS=-I${.CURDIR}/../../include -I${.CURDIR}/../libbug -I${S}/lib/libsa \
-fomit-frame-pointer -save-temps
OBJS=bugcrt.o sdcrt.o
CLEANFILES+=a.out ${OBJS}
all: ${OBJS}
bugcrt.o: bugcrt.c
${COMPILE.c} -c $<
${LD} -x -r ${.TARGET}
mv a.out ${.TARGET}
sdcrt.o: sdcrt.c
${COMPILE.c} -c $<
${LD} -x -r ${.TARGET}
mv a.out ${.TARGET}
install:
lint tags:
.include <bsd.prog.mk>
|