15 lines
326 B
Makefile
15 lines
326 B
Makefile
# $NetBSD: Makefile.inc,v 1.2 2001/01/30 14:29:47 tsutsui Exp $
|
|
|
|
BINDIR= /usr/mdec
|
|
|
|
# if there is a 'version' file, add rule for vers.c and add it to SRCS
|
|
# and CLEANFILES
|
|
.if exists(version)
|
|
.PHONY: vers.c
|
|
vers.c: version
|
|
sh ${S}/conf/newvers_stand.sh ${.CURDIR}/version ${MACHINE}
|
|
|
|
SRCS+= vers.c
|
|
CLEANFILES+= vers.c
|
|
.endif
|