~ubuntu-branches/ubuntu/lucid/nfs-utils/lucid

« back to all changes in this revision

Viewing changes to utils/nfsstat/Makefile

  • Committer: Bazaar Package Importer
  • Author(s): Anibal Monsalve Salazar
  • Date: 2006-07-03 10:36:59 UTC
  • mto: (12.1.1 feisty)
  • mto: This revision was merged to the branch mainline in revision 6.
  • Revision ID: james.westby@ubuntu.com-20060703103659-71qzs6f21zzmjmhx
Tags: upstream-1.0.8
ImportĀ upstreamĀ versionĀ 1.0.8

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
#
2
 
# dummy Makefile
3
 
#
4
 
 
5
 
PROGRAM = nfsstat
6
 
OBJS    = nfsstat.o
7
 
MAN8    = nfsstat
8
 
 
9
 
include $(TOP)rules.mk
10
 
 
11
 
12
 
# all:: nfsstat
13
 
#       @echo "Done."
14
 
15
 
# nfsstat: $(OBJS)
16
 
#       $(CC) $(LDFLAGS) -o $@ $(OBJS)
17
 
18
 
# clean distclean::
19
 
#       rm -f *.o core
20
 
21
 
# distclean::
22
 
#       rm -f nfsstat .depend
23
 
24
 
# install:
25
 
#       install -o root -g root -m 755 nfsstat /usr/sbin/$knfsstat
26
 
27
 
# dep::
28
 
#       $(CC) $(CFLAGS) -M $(OBJS:.o=.c) > .depend
29
 
30
 
# ifeq (.depend,$(wildcard .depend))
31
 
# include .depend
32
 
# endif