~n-muench/ubuntu/oneiric/open-vm-tools/open-vm-tools.fix-836277

« back to all changes in this revision

Viewing changes to lib/guestRpc/Makefile.am

  • Committer: Bazaar Package Importer
  • Author(s): Daniel Baumann
  • Date: 2009-07-30 12:56:49 UTC
  • mfrom: (1.1.6 upstream)
  • Revision ID: james.westby@ubuntu.com-20090730125649-97sfj5li8axiseoo
Tags: 2009.07.22-179896-2
* Temporarily building without dumbnet, the recently uploaded
  new dumbnet upstream version broke down (Closes: #539006).
* Using more common name to store local debian additions.

Show diffs side-by-side

added added

removed removed

Lines of Context:
20
20
libGuestRpc_la_SOURCES =
21
21
libGuestRpc_la_SOURCES += cpFileContents_xdr.c
22
22
libGuestRpc_la_SOURCES += ghiGetBinaryHandlers_xdr.c
 
23
libGuestRpc_la_SOURCES += ghiGetExecInfoHash_xdr.c
23
24
libGuestRpc_la_SOURCES += ghiProtocolHandler_xdr.c
24
25
libGuestRpc_la_SOURCES += guestlibV3_xdr.c
25
26
libGuestRpc_la_SOURCES += nicinfo_xdr.c
35
36
CLEANFILES += cpFileContents_xdr.c
36
37
CLEANFILES += ghiGetBinaryHandlers.h
37
38
CLEANFILES += ghiGetBinaryHandlers_xdr.c
 
39
CLEANFILES += ghiGetExecInfoHash.h
 
40
CLEANFILES += ghiGetExecInfoHash_xdr.c
38
41
CLEANFILES += ghiProtocolHandler.h
39
42
CLEANFILES += ghiProtocolHandler_xdr.c
40
43
CLEANFILES += guestlibV3.h
47
50
EXTRA_DIST =
48
51
EXTRA_DIST += cpFileContents.x
49
52
EXTRA_DIST += ghiGetBinaryHandlers.x
 
53
EXTRA_DIST += ghiGetExecInfoHash.x
50
54
EXTRA_DIST += ghiProtocolHandler.x
51
55
EXTRA_DIST += guestlibV3.x
52
56
EXTRA_DIST += nicinfo.x
89
93
ghiGetBinaryHandlers_xdr.c: ghiGetBinaryHandlers.x ghiGetBinaryHandlers.h
90
94
        $(RPCGEN) $(RPCGENFLAGS) -c -o $@ $(builddir)/ghiGetBinaryHandlers.x
91
95
 
 
96
ghiGetExecInfoHash.h: ghiGetExecInfoHash.x
 
97
        if [ $(top_builddir) != $(top_srcdir) ]; then                           \
 
98
           cp -f $(top_srcdir)/lib/guestRpc/ghiGetExecInfoHash.x $(builddir); \
 
99
        fi
 
100
        $(RPCGEN) $(RPCGENFLAGS) -h -o $@ $(builddir)/ghiGetExecInfoHash.x
 
101
        $(SED) 's,rpc/rpc\.h,vmxrpc.h,' $@ > $@.tmp
 
102
        mv $@.tmp $@
 
103
        $(MKDIR_P) $(top_builddir)/lib/include/guestrpc
 
104
        cp $@ $(top_builddir)/lib/include/guestrpc
 
105
 
 
106
ghiGetExecInfoHash_xdr.c: ghiGetExecInfoHash.x ghiGetExecInfoHash.h
 
107
        $(RPCGEN) $(RPCGENFLAGS) -c -o $@ $(builddir)/ghiGetExecInfoHash.x
 
108
 
92
109
ghiProtocolHandler.h: ghiProtocolHandler.x
93
110
        if [ $(top_builddir) != $(top_srcdir) ]; then                           \
94
111
           cp -f $(top_srcdir)/lib/guestRpc/ghiProtocolHandler.x $(builddir);   \