summaryrefslogtreecommitdiff
path: root/regress/sys/ddb/Makefile
blob: e2cdba8e376764c84603af2e2135eb0c918db489 (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.4 2014/12/17 00:10:22 daniel 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 2048 ]; \
	then \
		echo 'hangman is too big!!!'; \
		false; \
	fi

clean:
	rm -rf build

.include <bsd.regress.mk>