blob: 2fcb0adc719f1f20074f6069324b519ba93e205a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
# $NetBSD: Makefile,v 1.2 1995/04/20 22:38:10 cgd Exp $
PROG= varargstest
SRCS= argtest.c
NOMAN= noman, no way, man
CFLAGS+= -DVARARGS
.PATH: ${.CURDIR}/../stdarg
install:
regress: ${PROG}
./${PROG}
.include <bsd.prog.mk>
|