blob: 5a891bf30d21b4df7830c25d1016a15386f2d53e (
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
|
# $OpenBSD: Makefile,v 1.3 2010/06/20 14:22:39 phessler Exp $
.if (${MACHINE} == "i386")
REGRESS_TARGETS+= size
.endif
SRC= ${.CURDIR}/../../..
size: clean
mkdir build
/usr/sbin/config -s ${SRC}/sys -b build \
${SRC}/sys/arch/${MACHINE}/conf/GENERIC
cd build; \
make db_hangman.o; \
if [ `size db_hangman.o | \
awk 'BEGIN {getline} {print $$1+$$2}'` -gt 1024 ]; \
then \
echo 'hangman is too big!!!'; \
false; \
fi
clean:
rm -rf build
.include <bsd.regress.mk>
|