blob: 030f65f6454dc583dbef2cd2cc318794f2fd37ca (
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
|
# $NetBSD: Makefile,v 1.15 2001/12/12 01:48:48 tv Exp $
LIB= amu
NOLINKLIB= # defined
.include "${.CURDIR}/../Makefile.inc"
DIST= ${IDIST}/libamu
.PATH: ${DIST} ${IDIST}/conf/mtab ${IDIST}/conf/transp ${IDIST}/conf/umount
SRCS= hasmntopt.c misc_rpc.c mount_fs.c mtab.c mtab_bsd.c \
nfs_prot_xdr.c transp_sockets.c ualarm.c umount_bsd44.c util.c wire.c \
xdr_func.c xutil.c
# some host specific compile time settings amd wants to have compiled in
config_local.h: mkconf
@rm -f ${.TARGET}
sh ${.ALLSRC} `sh ${.CURDIR}/../../../sys/conf/osrelease.sh` > ${.TARGET}
CLEANFILES+= config_local.h
.include <bsd.lib.mk>
${SRCS}: config_local.h
|