mirror of
https://github.com/Stichting-MINIX-Research-Foundation/netbsd.git
synced 2025-09-08 23:00:18 -04:00
25 lines
469 B
Makefile
25 lines
469 B
Makefile
# $NetBSD: Makefile.inc,v 1.10 2014/01/12 15:26:30 tsutsui Exp $
|
|
|
|
BINDIR= /usr/mdec
|
|
|
|
CFLAGS+= -ffreestanding
|
|
|
|
# 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
|
|
${_MKTARGET_CREATE}
|
|
${HOST_SH} ${S}/conf/newvers_stand.sh ${.CURDIR}/version ${MACHINE}
|
|
|
|
SRCS+= vers.c
|
|
CLEANFILES+= vers.c
|
|
.endif
|
|
|
|
# XXX SHOULD NOT NEED TO DEFINE THESE!
|
|
LIBCRT0=
|
|
LIBCRTI=
|
|
LIBC=
|
|
LIBCRTBEGIN=
|
|
LIBCRTEND=
|