Commit | Line | Data |
---|---|---|
6c437065 TN |
1 | noinst_LTLIBRARIES = libportmap.la |
2 | ||
763cd6e3 RS |
3 | portmap_SOURCES_GENERATED = |
4 | portmap_HEADERS_GENERATED = | |
6c437065 TN |
5 | portmap_GENERATED = $(portmap_SOURCES_GENERATED) $(portmap_HEADERS_GENERATED) |
6 | ||
7 | CLEANFILES = $(portmap_GENERATED) portmap-stamp | |
8 | ||
e803ae57 RS |
9 | libportmap_la_CPPFLAGS = -I$(abs_top_srcdir)/include \ |
10 | -I$(abs_top_srcdir)/include/nfsc | |
6c437065 TN |
11 | libportmap_la_SOURCES = \ |
12 | $(portmap_SOURCES_GENERATED) \ | |
5392b1cf | 13 | portmap.c libnfs-raw-portmap.c libnfs-raw-portmap.h |
6c437065 TN |
14 | |
15 | $(portmap_GENERATED) : portmap-stamp | |
16 | portmap-stamp : portmap.x | |
17 | rm -f $(portmap_GENERATED) | |
6c437065 | 18 | touch portmap-stamp |
763cd6e3 RS |
19 | |
20 | compile_rpc: | |
a0c4ea7d | 21 | cat portmap.x | head -29 >libnfs-raw-portmap.h |
ea283cd7 | 22 | rpcgen -h portmap.x | sed -e "s/#include <rpc\/rpc.h>/#include <nfsc\/libnfs-zdr.h>/" | sed -e "s/xdr/zdr/g" -e "s/XDR/ZDR/g" -e "s/ CLIENT / void /g" -e "s/SVCXPRT /void /g" -e "s/bool_t/uint32_t/g" >> libnfs-raw-portmap.h |
a0c4ea7d | 23 | cat portmap.x | head -29 >libnfs-raw-portmap.c |
af8d37c8 | 24 | rpcgen -c portmap.x | sed -e "s/#include \".*portmap.h\"/#include \"libnfs-zdr.h\"\n#include \"libnfs-raw-portmap.h\"/" -e "s/xdr/zdr/g" -e "s/XDR/ZDR/g" -e "s/register int32_t \*buf;/register int32_t *buf;\n buf = NULL;/" -e "s/bool_t/uint32_t/g" >> libnfs-raw-portmap.c |