summaryrefslogtreecommitdiffstats
path: root/rpc/xdr/gen/Makefile.am
blob: 3e799b4c644fea9bc4c0eaa9b53b6ff55c442604 (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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
if BUILD_GNFS
    NFS_XDRS = nlm4-xdr.x nsm-xdr.x acl3-xdr.x mount3udp.x
endif

XDRGENFILES = glusterfs3-xdr.x glusterfs4-xdr.x cli1-xdr.x \
	rpc-common-xdr.x glusterd1-xdr.x portmap-xdr.x \
	changelog-xdr.x ${NFS_XDRS}

XDRHEADERS = $(XDRGENFILES:.x=.h)
XDRSOURCES = $(XDRGENFILES:.x=.c)

CLEANFILES = $(XDRSOURCES) $(XDRHEADERS) $(XDRGENFILES)

# trick automake into doing BUILT_SOURCES magic
BUILT_SOURCES = $(XDRHEADERS) $(XDRSOURCES)

xdrsrc=$(top_srcdir)/rpc/xdr/src
xdrdst=$(top_builddir)/rpc/xdr/src

# make's dependency resolution may mean that it decides to run
# rpcgen again (unnecessarily), but as the .c file already exists,
# rpcgen will exit with an error, resulting in a build error. We
# could use a '-' (i.e. -@rpcgen ...) and suffer with noisy warnings
# in the build. Or we do this crufty thing instead.
$(XDRSOURCES): $(XDRGENFILES)
	@if [ ! -e $(xdrdst)/$@ -o $(@:.c=.x) -nt $(xdrdst)/$@ ]; then \
		rpcgen -c -o $(xdrdst)/$@ $(@:.c=.x) ;\
	fi

# d*mn sed in netbsd6 doesn't do -i (inline)
# (why are we still running smoke on netbsd6 and not netbsd7?)
$(XDRHEADERS): $(XDRGENFILES)
	@if [ ! -e $(xdrdst)/$@ -o $(@:.h=.x) -nt $(xdrdst)/$@ ]; then \
		rpcgen -h -o $(@:.h=.tmp) $(@:.h=.x) && \
		sed -e '/#ifndef/ s/-/_/g' -e '/#define/ s/-/_/g' \
			-e '/#endif/ s/-/_/' -e 's/TMP_/H_/g' \
			$(@:.h=.tmp) > $(xdrdst)/$@ && \
		rm -f $(@:.h=.tmp) ; \
	fi


# link .x files when doing out-of-tree builds
# have to use .PHONY here to force it; all versions of make
# will think the file already exists "here" by virtue of the
# VPATH. And we have to have the .x file in $cwd in order to
# have rpcgen generate "nice" #include directives
# i.e. (nice):
# #include "acl3-xdr.h"
# versus (not nice):
# #include "../../../../foo/src/rpc/xdr/src/acl3-xdr.h"
.PHONY : $(XDRGENFILES)
$(XDRGENFILES):
	@if [ ! -e $@ ]; then ln -s $(xdrsrc)/$@ . ; fi;