14 lines
214 B
Makefile
14 lines
214 B
Makefile
# $NetBSD: Makefile,v 1.6 2001/12/12 01:24:13 tv Exp $
|
|
|
|
PROG= varargstest
|
|
SRCS= argtest.c
|
|
NOMAN= # defined
|
|
CPPFLAGS+= -DVARARGS
|
|
|
|
.PATH: ${.CURDIR}/../stdarg
|
|
|
|
regress: ${PROG}
|
|
./${PROG}
|
|
|
|
.include <bsd.prog.mk>
|