summaryrefslogtreecommitdiffstats
path: root/utils/nfsstat/Makefile
blob: 31ffbd96ed35578303238c9d8a8b5faf0d8b3fc1 (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
26
27
28
29
30
31
32
33
#
# dummy Makefile
#

TOP	= ../../
PROGRAM	= nfsstat
OBJS	= nfsstat.o
MAN8	= nfsstat

include $(TOP)rules.mk

# 
# all::	nfsstat
# 	@echo "Done."
# 
# nfsstat: $(OBJS)
# 	$(CC) $(LDFLAGS) -o $@ $(OBJS)
# 
# clean distclean::
# 	rm -f *.o core
# 
# distclean::
# 	rm -f nfsstat .depend
# 
# install:
# 	install -o root -g root -m 755 nfsstat /usr/sbin/$knfsstat
# 
# dep::
# 	$(CC) $(CFLAGS) -M $(OBJS:.o=.c) > .depend
# 
# ifeq (.depend,$(wildcard .depend))
# include .depend
# endif