collect nfs servers into a dedicated list and parse this list and print the results...
[deb_libnfs.git] / Makefile.in
CommitLineData
84004dbf
RS
1prefix = @prefix@
2exec_prefix = @exec_prefix@
3libdir = @libdir@
310bb382 4includedir = @includedir@
84004dbf
RS
5bindir = @bindir@
6LIBS=@LIBS@
84004dbf 7INSTALLCMD = @install@ -c
fb109a12
M
8is_darwin=@is_darwin@
9ENABLE_EXAMPLES=@ENABLE_EXAMPLES@
84004dbf 10
fb109a12
M
11CC=@CC@
12CFLAGS=@CFLAGS@ -g -O0 -fPIC -Wall -W -I. -Iinclude -Imount -Infs -Iportmap -Irquota "-D_U_=__attribute__((unused))" -D_FILE_OFFSET_BITS=64
84004dbf
RS
13
14LIBNFS_A=lib/libnfs.a
84004dbf 15VERSION=1.0.0
fb109a12
M
16
17ifeq ("$(is_darwin)","yes")
18 LIBNFS_SO_NAME=libnfs.1.dylib
19 LIBNFS_SO=lib/libnfs.$(VERSION).dylib
20 LDFLAGS+=@CFLAGS@ -dynamiclib
21 RPCGEN_DEF=-DU_INT64_PLATTFORM_TYPE="u_int64_t"
22else
23 LIBNFS_SO_NAME=libnfs.so.1
24 LIBNFS_SO=lib/libnfs.so.$(VERSION)
25 LDFLAGS+=@CFLAGS@ -shared -Wl,-soname=$(LIBNFS_SO_NAME)
26endif
84004dbf
RS
27
28LIB_OBJS = lib/pdu.o lib/init.o lib/socket.o \
29lib/libnfs.o lib/libnfs-sync.o
30
31LIBNFS_OBJS = \
32mount/libnfs-raw-mount.o mount/mount.o \
33portmap/libnfs-raw-portmap.o portmap/portmap.o \
05a777d9
RS
34nfs/libnfs-raw-nfs.o nfs/nfs.o \
35rquota/libnfs-raw-rquota.o rquota/rquota.o
84004dbf 36
fb109a12 37ifeq ("$(ENABLE_EXAMPLES)","yes")
28f7bd66 38 EXAMPLES=bin/nfsclient-raw bin/nfsclient-async bin/nfsclient-sync bin/nfsclient-bcast
fb109a12 39endif
84004dbf
RS
40
41all: $(LIBNFS_SO) $(EXAMPLES)
42
43bin/nfsclient-async: examples/nfsclient-async.c $(LIBNFS_A)
44 mkdir -p bin
45 $(CC) $(CFLAGS) -o $@ examples/nfsclient-async.c $(LIBNFS_A) $(LIBS)
46
47bin/nfsclient-sync: examples/nfsclient-sync.c $(LIBNFS_A)
48 mkdir -p bin
49 $(CC) $(CFLAGS) -o $@ examples/nfsclient-sync.c $(LIBNFS_A) $(LIBS)
50
51bin/nfsclient-raw: examples/nfsclient-raw.c $(LIBNFS_A)
52 mkdir -p bin
53 $(CC) $(CFLAGS) -o $@ examples/nfsclient-raw.c $(LIBNFS_A) $(LIBS)
54
28f7bd66
RS
55bin/nfsclient-bcast: examples/nfsclient-bcast.c $(LIBNFS_A)
56 mkdir -p bin
57 $(CC) $(CFLAGS) -o $@ examples/nfsclient-bcast.c $(LIBNFS_A) $(LIBS)
58
84004dbf
RS
59$(LIBNFS_A): $(LIBNFS_OBJS) $(LIB_OBJS)
60 @echo Creating library $@
61 ar r $(LIBNFS_A) $(LIBNFS_OBJS) $(LIB_OBJS)
62 ranlib $(LIBNFS_A)
63
64$(LIBNFS_SO): $(LIBNFS_OBJS) $(LIB_OBJS)
65 @echo Creating shared library $@
fb109a12 66 $(CC) $(LDFLAGS) -o $@ $(LIBNFS_OBJS) $(LIB_OBJS)
84004dbf
RS
67
68portmap/libnfs-raw-portmap.h: portmap/portmap.x
69 @echo Generating $@
fb109a12 70 rpcgen $(RPCGEN_DEF) -h portmap/portmap.x > portmap/libnfs-raw-portmap.h
84004dbf
RS
71
72portmap/libnfs-raw-portmap.c: portmap/portmap.x
73 @echo Generating $@
fb109a12 74 rpcgen $(RPCGEN_DEF) -c portmap/portmap.x | sed -e "s/#include \".*portmap.h\"/#include \"libnfs-raw-portmap.h\"/" > portmap/libnfs-raw-portmap.c
84004dbf
RS
75
76portmap/libnfs-raw-portmap.o: portmap/libnfs-raw-portmap.c portmap/libnfs-raw-portmap.h
77 @echo Compiling $@
78 $(CC) $(CFLAGS) -c portmap/libnfs-raw-portmap.c -o $@
79
80mount/libnfs-raw-mount.h: mount/mount.x
81 @echo Generating $@
fb109a12 82 rpcgen $(RPCGEN_DEF) -h mount/mount.x > mount/libnfs-raw-mount.h
84004dbf
RS
83
84mount/libnfs-raw-mount.c: mount/mount.x
85 @echo Generating $@
fb109a12 86 rpcgen $(RPCGEN_DEF) -c mount/mount.x | sed -e "s/#include \".*mount.h\"/#include \"libnfs-raw-mount.h\"/" > mount/libnfs-raw-mount.c
84004dbf
RS
87
88mount/libnfs-raw-mount.o: mount/libnfs-raw-mount.c mount/libnfs-raw-mount.h
89 @echo Compiling $@
90 $(CC) $(CFLAGS) -c mount/libnfs-raw-mount.c -o $@
91
92nfs/libnfs-raw-nfs.h: nfs/nfs.x
93 @echo Generating $@
fb109a12 94 rpcgen $(RPCGEN_DEF) -h nfs/nfs.x > nfs/libnfs-raw-nfs.h
84004dbf
RS
95
96nfs/libnfs-raw-nfs.c: nfs/nfs.x
97 @echo Generating $@
fb109a12 98 rpcgen $(RPCGEN_DEF) -c nfs/nfs.x | sed -e "s/#include \".*nfs.h\"/#include \"libnfs-raw-nfs.h\"/" > nfs/libnfs-raw-nfs.c
84004dbf
RS
99
100nfs/libnfs-raw-nfs.o: nfs/libnfs-raw-nfs.c nfs/libnfs-raw-nfs.h
101 @echo Compiling $@
102 $(CC) $(CFLAGS) -c nfs/libnfs-raw-nfs.c -o $@
103
05a777d9
RS
104rquota/libnfs-raw-rquota.h: rquota/rquota.x
105 @echo Generating $@
fb109a12 106 rpcgen $(RPCGEN_DEF) -h rquota/rquota.x > rquota/libnfs-raw-rquota.h
05a777d9
RS
107
108rquota/libnfs-raw-rquota.c: rquota/rquota.x
109 @echo Generating $@
fb109a12 110 rpcgen $(RPCGEN_DEF) -c rquota/rquota.x | sed -e "s/#include \".*rquota.h\"/#include \"libnfs-raw-rquota.h\"/" > rquota/libnfs-raw-rquota.c
05a777d9
RS
111
112rquota/libnfs-raw-rquota.o: rquota/libnfs-raw-rquota.c rquota/libnfs-raw-rquota.h
113 @echo Compiling $@
114 $(CC) $(CFLAGS) -c rquota/libnfs-raw-rquota.c -o $@
115
84004dbf 116install: $(LIBNFS_A) $(LIBNFS_SO)
310bb382
SR
117 mkdir -p $(DESTDIR)$(libdir)
118 $(INSTALLCMD) -m 755 $(LIBNFS_SO) $(DESTDIR)$(libdir)
119 $(INSTALLCMD) -m 755 $(LIBNFS_A) $(DESTDIR)$(libdir)
84004dbf 120 @ldconfig@
310bb382
SR
121 mkdir -p $(DESTDIR)$(includedir)/nfsc
122 $(INSTALLCMD) -m 644 include/libnfs.h $(DESTDIR)$(includedir)/nfsc
123 $(INSTALLCMD) -m 644 include/libnfs-private.h $(DESTDIR)$(includedir)/nfsc
124 $(INSTALLCMD) -m 644 mount/libnfs-raw-mount.h $(DESTDIR)$(includedir)/nfsc
125 $(INSTALLCMD) -m 644 nfs/libnfs-raw-nfs.h $(DESTDIR)$(includedir)/nfsc
126 $(INSTALLCMD) -m 644 portmap/libnfs-raw-portmap.h $(DESTDIR)$(includedir)/nfsc
84004dbf
RS
127
128distclean: clean
129 rm -f config.h config.log config.status configure Makefile
130
131clean:
fb109a12
M
132 rm -rf bin/*
133 rm -f lib/*.o lib/*.a $(LIBNFS_SO)
84004dbf
RS
134 rm -f mount/*.o mount/libnfs-raw-mount.h mount/libnfs-raw-mount.c
135 rm -f nfs/*.o nfs/libnfs-raw-nfs.h nfs/libnfs-raw-nfs.c
136 rm -f portmap/*.o portmap/libnfs-raw-portmap.h portmap/libnfs-raw-portmap.c
05a777d9 137 rm -f rquota/*.o rquota/libnfs-raw-rquota.h rquota/libnfs-raw-rquota.c
84004dbf
RS
138 rm -f nfsclient-raw nfsclient-async nfsclient-sync
139