1#
2# Makefile for files
3#
4
5Project = files
6
7inplace:
8	@$(MAKE) all SRCROOT=. OBJROOT=. SYMROOT=. DSTROOT=/
9
10include $(MAKEFILEPATH)/CoreOS/ReleaseControl/Common.make
11
12MAN_DIR = $(DSTROOT)/usr/share/man/man5
13
14#
15# Standard B&I targets
16#
17all:
18
19install::
20	install -d -o root -g wheel -m 755 $(MAN_DIR)
21	install -c -o root -g wheel -m 444 $(SRCROOT)/nfs.conf.5 $(MAN_DIR)
22
23clean::
24