rhel: Define rundir for older distros.
[cascardo/ovs.git] / rhel / automake.mk
1 # Copyright (C) 2009, 2010, 2011, 2012, 2014 Nicira, Inc.
2 #
3 # Copying and distribution of this file, with or without modification,
4 # are permitted in any medium without royalty provided the copyright
5 # notice and this notice are preserved.  This file is offered as-is,
6 # without warranty of any kind.
7
8 EXTRA_DIST += \
9         rhel/README.RHEL \
10         rhel/automake.mk \
11         rhel/etc_init.d_openvswitch \
12         rhel/etc_logrotate.d_openvswitch \
13         rhel/etc_sysconfig_network-scripts_ifdown-ovs \
14         rhel/etc_sysconfig_network-scripts_ifup-ovs \
15         rhel/openvswitch-dkms.spec \
16         rhel/openvswitch-dkms.spec.in \
17         rhel/openvswitch-kmod-rhel6.spec \
18         rhel/openvswitch-kmod-rhel6.spec.in \
19         rhel/openvswitch-kmod.files \
20         rhel/openvswitch-kmod-fedora.spec \
21         rhel/openvswitch-kmod-fedora.spec.in \
22         rhel/openvswitch.spec \
23         rhel/openvswitch.spec.in \
24         rhel/openvswitch-fedora.spec \
25         rhel/openvswitch-fedora.spec.in \
26         rhel/usr_share_openvswitch_scripts_sysconfig.template \
27         rhel/usr_share_openvswitch_scripts_systemd_sysconfig.template \
28         rhel/usr_lib_systemd_system_openvswitch.service \
29         rhel/usr_lib_systemd_system_openvswitch-nonetwork.service \
30         rhel/usr_lib_systemd_system_ovn-controller.service \
31         rhel/usr_lib_systemd_system_ovn-northd.service
32
33 update_rhel_spec = \
34   $(AM_V_GEN)($(ro_shell) && sed -e 's,[@]VERSION[@],$(VERSION),g') \
35     < $(srcdir)/rhel/$(@F).in > $(@F).tmp || exit 1; \
36   if cmp -s $(@F).tmp $@; then touch $@; rm $(@F).tmp; else mv $(@F).tmp $@; fi
37
38 $(srcdir)/rhel/openvswitch-dkms.spec: rhel/openvswitch-dkms.spec.in $(top_builddir)/config.status
39         $(update_rhel_spec)
40
41 $(srcdir)/rhel/openvswitch-kmod-rhel6.spec: rhel/openvswitch-kmod-rhel6.spec.in $(top_builddir)/config.status
42         $(update_rhel_spec)
43
44 $(srcdir)/rhel/openvswitch-kmod-fedora.spec: rhel/openvswitch-kmod-fedora.spec.in $(top_builddir)/config.status
45         $(update_rhel_spec)
46
47 $(srcdir)/rhel/openvswitch.spec: rhel/openvswitch.spec.in $(top_builddir)/config.status
48         $(update_rhel_spec)
49
50 $(srcdir)/rhel/openvswitch-fedora.spec: rhel/openvswitch-fedora.spec.in $(top_builddir)/config.status
51         $(update_rhel_spec)