]> git.proxmox.com Git - ovs.git/blob - python/automake.mk
ofproto: Handle (draft) OpenFlow 1.5 insert and remove group commands.
[ovs.git] / python / automake.mk
1 ovstest_pyfiles = \
2 python/ovstest/__init__.py \
3 python/ovstest/args.py \
4 python/ovstest/rpcserver.py \
5 python/ovstest/tcp.py \
6 python/ovstest/tests.py \
7 python/ovstest/udp.py \
8 python/ovstest/util.py \
9 python/ovstest/vswitch.py
10
11 ovs_pyfiles = \
12 python/ovs/__init__.py \
13 python/ovs/daemon.py \
14 python/ovs/db/__init__.py \
15 python/ovs/db/data.py \
16 python/ovs/db/error.py \
17 python/ovs/db/idl.py \
18 python/ovs/db/parser.py \
19 python/ovs/db/schema.py \
20 python/ovs/db/types.py \
21 python/ovs/fatal_signal.py \
22 python/ovs/json.py \
23 python/ovs/jsonrpc.py \
24 python/ovs/ovsuuid.py \
25 python/ovs/poller.py \
26 python/ovs/process.py \
27 python/ovs/reconnect.py \
28 python/ovs/socket_util.py \
29 python/ovs/stream.py \
30 python/ovs/timeval.py \
31 python/ovs/unixctl/__init__.py \
32 python/ovs/unixctl/client.py \
33 python/ovs/unixctl/server.py \
34 python/ovs/util.py \
35 python/ovs/version.py \
36 python/ovs/vlog.py
37
38 PYFILES = $(ovs_pyfiles) python/ovs/dirs.py $(ovstest_pyfiles)
39 EXTRA_DIST += $(PYFILES)
40 PYCOV_CLEAN_FILES += $(PYFILES:.py=.py,cover)
41
42 if HAVE_PYTHON
43 nobase_pkgdata_DATA = $(ovs_pyfiles) $(ovstest_pyfiles)
44 ovs-install-data-local:
45 $(MKDIR_P) python/ovs
46 sed \
47 -e '/^##/d' \
48 -e 's,[@]pkgdatadir[@],$(pkgdatadir),g' \
49 -e 's,[@]RUNDIR[@],$(RUNDIR),g' \
50 -e 's,[@]LOGDIR[@],$(LOGDIR),g' \
51 -e 's,[@]bindir[@],$(bindir),g' \
52 -e 's,[@]sysconfdir[@],$(sysconfdir),g' \
53 -e 's,[@]DBDIR[@],$(DBDIR),g' \
54 < $(srcdir)/python/ovs/dirs.py.template \
55 > python/ovs/dirs.py.tmp
56 $(MKDIR_P) $(DESTDIR)$(pkgdatadir)/python/ovs
57 $(INSTALL_DATA) python/ovs/dirs.py.tmp $(DESTDIR)$(pkgdatadir)/python/ovs/dirs.py
58 rm python/ovs/dirs.py.tmp
59 else
60 ovs-install-data-local:
61 @:
62 endif
63 install-data-local: ovs-install-data-local
64
65 UNINSTALL_LOCAL += ovs-uninstall-local
66 ovs-uninstall-local:
67 rm -f $(DESTDIR)$(pkgdatadir)/python/ovs/dirs.py
68
69 ALL_LOCAL += $(srcdir)/python/ovs/version.py
70 $(srcdir)/python/ovs/version.py: config.status
71 $(AM_V_GEN)$(ro_shell) > $(@F).tmp && \
72 echo 'VERSION = "$(VERSION)"' >> $(@F).tmp && \
73 if cmp -s $(@F).tmp $@; then touch $@; rm $(@F).tmp; else mv $(@F).tmp $@; fi
74
75 ALL_LOCAL += $(srcdir)/python/ovs/dirs.py
76 $(srcdir)/python/ovs/dirs.py: python/ovs/dirs.py.template
77 $(AM_V_GEN)sed \
78 -e '/^##/d' \
79 -e 's,[@]pkgdatadir[@],/usr/local/share/openvswitch,g' \
80 -e 's,[@]RUNDIR[@],/var/run,g' \
81 -e 's,[@]LOGDIR[@],/usr/local/var/log,g' \
82 -e 's,[@]bindir[@],/usr/local/bin,g' \
83 -e 's,[@]sysconfdir[@],/usr/local/etc,g' \
84 -e 's,[@]DBDIR[@],/usr/local/etc/openvswitch,g' \
85 < $? > $@.tmp && \
86 mv $@.tmp $@
87 EXTRA_DIST += python/ovs/dirs.py python/ovs/dirs.py.template