Merge lp:~gandelman-a/ubuntu/quantal/openvswitch/1.4.3 into lp:ubuntu/quantal/openvswitch

Proposed by Adam Gandelman
Status: Merged
Merge reported by: James Page
Merged at revision: not available
Proposed branch: lp:~gandelman-a/ubuntu/quantal/openvswitch/1.4.3
Merge into: lp:ubuntu/quantal/openvswitch
Diff against target: 246643 lines
To merge this branch: bzr merge lp:~gandelman-a/ubuntu/quantal/openvswitch/1.4.3
Reviewer Review Type Date Requested Status
Ubuntu branches Pending
Review via email: mp+127537@code.launchpad.net
To post a comment you must log in.

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
1=== modified file '.pc/applied-patches'
2--- .pc/applied-patches 2012-09-07 12:12:03 +0000
3+++ .pc/applied-patches 2012-10-02 16:42:23 +0000
4@@ -1,5 +1,3 @@
5-debian-changes-1.4.2+git20120612-6
6-bug-681955-ovs-ctl-Start-the-rest-of-Open-vSwitch.patch
7 bug-681880-1-lockfile-Fix-hang-locking-through-a-dangling-symlink.patch
8 bug-681880-2-ovsdb-Make-ovsdb-tool-create-work-through-a-dangling.patch
9 bug-681880-3-Make-the-location-of-the-database-separately-configu.patch
10@@ -10,6 +8,3 @@
11 bug-681880-8-Fix-a-typo-in-commit-f973f2af2.patch
12 bug-681880-9-dirs-dbdir-default-must-be-based-on-sysconfdir.patch
13 bug-683665-use-mode-700-for-pki-incoming-dir.patch
14-bug-684057-ovs-ctl-Add-support-for-newer-module-name.patch
15-debian-changes-1.4.2+git20120612-9
16-lp1044318-Reset-upper-layer-protocol-info.patch
17
18=== modified file '.pc/bug-681880-3-Make-the-location-of-the-database-separately-configu.patch/configure.ac'
19--- .pc/bug-681880-3-Make-the-location-of-the-database-separately-configu.patch/configure.ac 2012-08-01 11:20:21 +0000
20+++ .pc/bug-681880-3-Make-the-location-of-the-database-separately-configu.patch/configure.ac 2012-10-02 16:42:23 +0000
21@@ -13,7 +13,7 @@
22 # limitations under the License.
23
24 AC_PREREQ(2.64)
25-AC_INIT(openvswitch, 1.4.2, ovs-bugs@openvswitch.org)
26+AC_INIT(openvswitch, 1.4.3, ovs-bugs@openvswitch.org)
27 NX_BUILDNR
28 AC_CONFIG_SRCDIR([datapath/datapath.c])
29 AC_CONFIG_MACRO_DIR([m4])
30
31=== modified file '.pc/bug-681880-3-Make-the-location-of-the-database-separately-configu.patch/utilities/ovs-ctl.in'
32--- .pc/bug-681880-3-Make-the-location-of-the-database-separately-configu.patch/utilities/ovs-ctl.in 2012-08-01 11:20:21 +0000
33+++ .pc/bug-681880-3-Make-the-location-of-the-database-separately-configu.patch/utilities/ovs-ctl.in 2012-10-02 16:42:23 +0000
34@@ -30,12 +30,32 @@
35 ## start ##
36 ## ----- ##
37
38+do_modprobe () {
39+ # First try the name suffixed with _mod, because this is the
40+ # original name used for the out-of-tree kernel module. If the
41+ # user has a module by that name, then it means that he went to
42+ # some trouble to build it, so presumably he wants to use it.
43+ #
44+ # Then try the name without the _mod suffix, the upstream Linux
45+ # kernel module name and the name used by later versions of Open
46+ # vSwitch.
47+ modprobe ${1}_mod || modprobe $1
48+} 2>/dev/null
49+
50 insert_openvswitch_mod_if_required () {
51 # If openvswitch_mod is already loaded then we're done.
52- test -e /sys/module/openvswitch_mod && return 0
53+ if test -e /sys/module/openvswitch_mod || test -e /sys/module/openvswitch
54+ then
55+ return 0
56+ fi
57+
58+ if (modprobe --dry-run openvswitch_mod && \
59+ modprobe --dry-run openvswitch) 2>/dev/null; then
60+ log_warning_msg "openvswitch_mod.ko and openvswitch.ko modules are both available. openvswitch_mod.ko will be preferred."
61+ fi
62
63 # Load openvswitch_mod. If that's successful then we're done.
64- action "Inserting openvswitch module" modprobe openvswitch_mod && return 0
65+ action "Inserting openvswitch module" do_modprobe openvswitch && return 0
66
67 # If the bridge module is loaded, then that might be blocking
68 # openvswitch_mod. Try to unload it, if there are no bridges.
69@@ -48,12 +68,12 @@
70 action "removing bridge module" rmmod bridge || return 1
71
72 # Try loading openvswitch_mod again.
73- action "Inserting openvswitch module" modprobe openvswitch_mod
74+ action "Inserting openvswitch module" do_modprobe openvswitch
75 }
76
77 insert_brcompat_mod_if_required () {
78 test -e /sys/module/brcompat_mod && return 0
79- action "Inserting brcompat module" modprobe brcompat_mod
80+ action "Inserting brcompat module" do_modprobe brcompat
81 }
82
83 insert_mod_if_required () {
84@@ -287,12 +307,13 @@
85 action "Removing datapath: $dp" ovs-dpctl del-dp "$dp"
86 done
87
88- if test -e /sys/module/brcompat_mod; then
89- action "Removing brcompat module" rmmod brcompat_mod
90- fi
91- if test -e /sys/module/openvswitch_mod; then
92- action "Removing openvswitch module" rmmod openvswitch_mod
93- fi
94+ for module in brcompat openvswitch; do
95+ for fullname in ${module}_mod $module; do
96+ if test -e /sys/module/$fullname; then
97+ action "Removing $module module" rmmod $fullname
98+ fi
99+ done
100+ done
101
102 start
103
104
105=== removed directory '.pc/bug-681955-ovs-ctl-Start-the-rest-of-Open-vSwitch.patch'
106=== removed directory '.pc/bug-681955-ovs-ctl-Start-the-rest-of-Open-vSwitch.patch/utilities'
107=== removed file '.pc/bug-681955-ovs-ctl-Start-the-rest-of-Open-vSwitch.patch/utilities/ovs-ctl.in'
108--- .pc/bug-681955-ovs-ctl-Start-the-rest-of-Open-vSwitch.patch/utilities/ovs-ctl.in 2012-07-27 12:36:03 +0000
109+++ .pc/bug-681955-ovs-ctl-Start-the-rest-of-Open-vSwitch.patch/utilities/ovs-ctl.in 1970-01-01 00:00:00 +0000
110@@ -1,575 +0,0 @@
111-#! /bin/sh
112-# Copyright (C) 2009, 2010, 2011, 2012 Nicira Networks, Inc.
113-#
114-# Licensed under the Apache License, Version 2.0 (the "License");
115-# you may not use this file except in compliance with the License.
116-# You may obtain a copy of the License at:
117-#
118-# http://www.apache.org/licenses/LICENSE-2.0
119-#
120-# Unless required by applicable law or agreed to in writing, software
121-# distributed under the License is distributed on an "AS IS" BASIS,
122-# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
123-# See the License for the specific language governing permissions and
124-# limitations under the License.
125-
126-case $0 in
127- */*) dir0=`echo "$0" | sed 's,/[^/]*$,,'` ;;
128- *) dir0=./ ;;
129-esac
130-. "$dir0/ovs-lib" || exit 1
131-
132-for dir in "$sbindir" "$bindir" /sbin /bin /usr/sbin /usr/bin; do
133- case :$PATH: in
134- *:$dir:*) ;;
135- *) PATH=$PATH:$dir ;;
136- esac
137-done
138-
139-## ----- ##
140-## start ##
141-## ----- ##
142-
143-insert_openvswitch_mod_if_required () {
144- # If openvswitch_mod is already loaded then we're done.
145- test -e /sys/module/openvswitch_mod && return 0
146-
147- # Load openvswitch_mod. If that's successful then we're done.
148- action "Inserting openvswitch module" modprobe openvswitch_mod && return 0
149-
150- # If the bridge module is loaded, then that might be blocking
151- # openvswitch_mod. Try to unload it, if there are no bridges.
152- test -e /sys/module/bridge || return 1
153- bridges=`echo /sys/class/net/*/bridge | sed 's,/sys/class/net/,,g;s,/bridge,,g'`
154- if test "$bridges" != "*"; then
155- log_warning_msg "not removing bridge module because bridges exist ($bridges)"
156- return 1
157- fi
158- action "removing bridge module" rmmod bridge || return 1
159-
160- # Try loading openvswitch_mod again.
161- action "Inserting openvswitch module" modprobe openvswitch_mod
162-}
163-
164-insert_brcompat_mod_if_required () {
165- test -e /sys/module/brcompat_mod && return 0
166- action "Inserting brcompat module" modprobe brcompat_mod
167-}
168-
169-insert_mod_if_required () {
170- insert_openvswitch_mod_if_required || return 1
171- if test X"$BRCOMPAT" = Xyes; then
172- insert_brcompat_mod_if_required || return 1
173- fi
174-}
175-
176-ovs_vsctl () {
177- ovs-vsctl --no-wait --timeout=5 "$@"
178-}
179-
180-ovsdb_tool () {
181- ovsdb-tool -vANY:console:off "$@"
182-}
183-
184-create_db () {
185- action "Creating empty database $DB_FILE" ovsdb_tool create "$DB_FILE" "$DB_SCHEMA"
186-}
187-
188-upgrade_db () {
189- schemaver=`ovsdb_tool schema-version "$DB_SCHEMA"`
190- if test ! -e "$DB_FILE"; then
191- log_warning_msg "$DB_FILE does not exist"
192- install -d -m 755 -o root -g root `dirname $DB_FILE`
193- create_db
194- elif test X"`ovsdb_tool needs-conversion "$DB_FILE" "$DB_SCHEMA"`" != Xno; then
195- # Back up the old version.
196- version=`ovsdb_tool db-version "$DB_FILE"`
197- cksum=`ovsdb_tool db-cksum "$DB_FILE" | awk '{print $1}'`
198- backup=$DB_FILE.backup$version-$cksum
199- action "Backing up database to $backup" cp "$DB_FILE" "$backup" || return 1
200-
201- # Compact database. This is important if the old schema did not enable
202- # garbage collection (i.e. if it did not have any tables with "isRoot":
203- # true) but the new schema does. In that situation the old database
204- # may contain a transaction that creates a record followed by a
205- # transaction that creates the first use of the record. Replaying that
206- # series of transactions against the new database schema (as "convert"
207- # does) would cause the record to be dropped by the first transaction,
208- # then the second transaction would cause a referential integrity
209- # failure (for a strong reference).
210- #
211- # Errors might occur on an Open vSwitch downgrade if ovsdb-tool doesn't
212- # understand some feature of the schema used in the OVSDB version that
213- # we're downgrading from, so we don't give up on error.
214- action "Compacting database" ovsdb_tool compact "$DB_FILE"
215-
216- # Upgrade or downgrade schema.
217- if action "Converting database schema" ovsdb_tool convert "$DB_FILE" "$DB_SCHEMA"; then
218- :
219- else
220- log_warning_msg "Schema conversion failed, using empty database instead"
221- rm -f "$DB_FILE"
222- create_db
223- fi
224- fi
225-}
226-
227-set_system_ids () {
228- set ovs_vsctl set Open_vSwitch .
229-
230- OVS_VERSION=`ovs-vswitchd --version | sed 's/.*) //;1q'`
231- set "$@" ovs-version="$OVS_VERSION"
232-
233- case $SYSTEM_ID in
234- random)
235- id_file=$etcdir/system-id.conf
236- uuid_file=$etcdir/install_uuid.conf
237- if test -e "$id_file"; then
238- SYSTEM_ID=`cat "$id_file"`
239- elif test -e "$uuid_file"; then
240- # Migrate from old file name.
241- . "$uuid_file"
242- SYSTEM_ID=$INSTALLATION_UUID
243- echo "$SYSTEM_ID" > "$id_file"
244- elif SYSTEM_ID=`uuidgen`; then
245- echo "$SYSTEM_ID" > "$id_file"
246- else
247- log_failure_msg "missing uuidgen, could not generate system ID"
248- fi
249- ;;
250-
251- '')
252- log_failure_msg "system ID not configured, please use --system-id"
253- ;;
254-
255- *)
256- ;;
257- esac
258- set "$@" external-ids:system-id="\"$SYSTEM_ID\""
259-
260- if test X"$SYSTEM_TYPE" != X; then
261- set "$@" system-type="\"$SYSTEM_TYPE\""
262- else
263- log_failure_msg "no default system type, please use --system-type"
264- fi
265-
266- if test X"$SYSTEM_VERSION" != X; then
267- set "$@" system-version="\"$SYSTEM_VERSION\""
268- else
269- log_failure_msg "no default system version, please use --system-version"
270- fi
271-
272- action "Configuring Open vSwitch system IDs" "$@" $extra_ids
273-}
274-
275-start () {
276- if test X"$FORCE_COREFILES" = Xyes; then
277- ulimit -Sc 67108864
278- fi
279-
280- insert_mod_if_required || return 1
281-
282- if daemon_is_running ovsdb-server; then
283- log_success_msg "ovsdb-server is already running"
284- else
285- # Create initial database or upgrade database schema.
286- upgrade_db || return 1
287-
288- # Start ovsdb-server.
289- set ovsdb-server "$DB_FILE"
290- set "$@" -vANY:CONSOLE:EMER -vANY:SYSLOG:ERR -vANY:FILE:INFO
291- set "$@" --remote=punix:"$DB_SOCK"
292- set "$@" --remote=db:Open_vSwitch,manager_options
293- set "$@" --private-key=db:SSL,private_key
294- set "$@" --certificate=db:SSL,certificate
295- set "$@" --bootstrap-ca-cert=db:SSL,ca_cert
296- start_daemon "$OVSDB_SERVER_PRIORITY" "$@" || return 1
297-
298- # Initialize database settings.
299- ovs_vsctl -- init -- set Open_vSwitch . db-version="$schemaver" \
300- || return 1
301- set_system_ids || return 1
302- if test X"$DELETE_BRIDGES" = Xyes; then
303- for bridge in `ovs_vsctl list-br`; do
304- ovs_vsctl del-br $bridge
305- done
306- fi
307- fi
308-
309- if daemon_is_running ovs-vswitchd; then
310- log_success_msg "ovs-vswitchd is already running"
311- else
312- # Increase the limit on the number of open file descriptors.
313- # ovs-vswitchd needs 16 per datapath, plus a few extra, so this
314- # should allow for 256 (or more) bridges.
315- ulimit -n 5000
316-
317- # Start ovs-vswitchd.
318- set ovs-vswitchd unix:"$DB_SOCK"
319- set "$@" -vANY:CONSOLE:EMER -vANY:SYSLOG:ERR -vANY:FILE:INFO
320- if test X"$MLOCKALL" != Xno; then
321- set "$@" --mlockall
322- fi
323- start_daemon "$OVS_VSWITCHD_PRIORITY" "$@"
324- fi
325-
326- if daemon_is_running ovs-brcompatd; then
327- log_success_msg "ovs-brcompatd is already running"
328- elif test X"$BRCOMPAT" = Xyes; then
329- set ovs-brcompatd
330- set "$@" -vANY:CONSOLE:EMER -vANY:SYSLOG:ERR -vANY:FILE:INFO
331- start_daemon "$OVS_BRCOMPATD_PRIORITY" "$@"
332- fi
333-}
334-
335-## ---- ##
336-## stop ##
337-## ---- ##
338-
339-stop () {
340- stop_daemon ovs-brcompatd
341- stop_daemon ovs-vswitchd
342- stop_daemon ovsdb-server
343-}
344-
345-## ----------------- ##
346-## force-reload-kmod ##
347-## ----------------- ##
348-
349-internal_interfaces () {
350- # Outputs a list of internal interfaces:
351- #
352- # - There is an internal interface for every bridge, whether it
353- # has an Interface record or not and whether the Interface
354- # record's 'type' is properly set or not.
355- #
356- # - There is an internal interface for each Interface record whose
357- # 'type' is 'internal'.
358- #
359- # But ignore interfaces that don't really exist.
360- for d in `(ovs_vsctl --bare \
361- -- --columns=name find Interface type=internal \
362- -- list-br) | sort -u`
363- do
364- if test -e "/sys/class/net/$d"; then
365- printf "%s " "$d"
366- fi
367- done
368-}
369-
370-save_interfaces () {
371- "$datadir/scripts/ovs-save" $ifaces > "$script"
372-}
373-
374-force_reload_kmod () {
375- ifaces=`internal_interfaces`
376- action "Detected internal interfaces: $ifaces" true
377-
378- stop
379-
380- script=`mktemp`
381- trap 'rm -f "$script"' 0 1 2 13 15
382- if action "Saving interface configuration" save_interfaces; then
383- :
384- else
385- log_warning_msg "Failed to save configuration, not replacing kernel module"
386- start
387- exit 1
388- fi
389- chmod +x "$script"
390-
391- for dp in `ovs-dpctl dump-dps`; do
392- action "Removing datapath: $dp" ovs-dpctl del-dp "$dp"
393- done
394-
395- if test -e /sys/module/brcompat_mod; then
396- action "Removing brcompat module" rmmod brcompat_mod
397- fi
398- if test -e /sys/module/openvswitch_mod; then
399- action "Removing openvswitch module" rmmod openvswitch_mod
400- fi
401-
402- start
403-
404- action "Restoring interface configuration" "$script"
405- rc=$?
406- if test $rc = 0; then
407- level=debug
408- else
409- level=err
410- fi
411- log="logger -p daemon.$level -t ovs-save"
412- $log "force-reload-kmod interface restore script exited with status $rc:"
413- $log -f "$script"
414-}
415-
416-## --------------- ##
417-## enable-protocol ##
418-## --------------- ##
419-
420-enable_protocol () {
421- # Translate the protocol name to a number, because "iptables -n -L" prints
422- # some protocols by name (despite the -n) and therefore we need to look for
423- # both forms.
424- #
425- # (iptables -S output is more uniform but old iptables doesn't have it.)
426- protonum=`grep "^$PROTOCOL[ ]" /etc/protocols | awk '{print $2}'`
427- if expr X"$protonum" : X'[0-9]\{1,\}$' > /dev/null; then :; else
428- log_failure_msg "unknown protocol $PROTOCOL"
429- return 1
430- fi
431-
432- name=$PROTOCOL
433- match="(\$2 == \"$PROTOCOL\" || \$2 == $protonum)"
434- insert="iptables -I INPUT -p $PROTOCOL"
435- if test X"$DPORT" != X; then
436- name="$name to port $DPORT"
437- match="$match && /dpt:$DPORT/"
438- insert="$insert --dport $DPORT"
439- fi
440- if test X"$SPORT" != X; then
441- name="$name from port $SPORT"
442- match="$match && /spt:$SPORT/"
443- insert="$insert --sport $SPORT"
444- fi
445- insert="$insert -j ACCEPT"
446-
447- if (iptables -n -L INPUT) >/dev/null 2>&1; then
448- if iptables -n -L INPUT | awk "$match { n++ } END { exit n == 0 }"
449- then
450- # There's already a rule for this protocol. Don't override it.
451- log_success_msg "iptables already has a rule for $name, not explicitly enabling"
452- else
453- action "Enabling $name with iptables" $insert
454- fi
455- elif (iptables --version) >/dev/null 2>&1; then
456- action "cannot list iptables rules, not adding a rule for $name"
457- else
458- action "iptables binary not installed, not adding a rule for $name"
459- fi
460-}
461-
462-## ---- ##
463-## main ##
464-## ---- ##
465-
466-set_defaults () {
467- SYSTEM_ID=
468-
469- DELETE_BRIDGES=no
470- BRCOMPAT=no
471-
472- DAEMON_CWD=/
473- FORCE_COREFILES=yes
474- MLOCKALL=yes
475- OVSDB_SERVER_PRIORITY=-10
476- OVS_VSWITCHD_PRIORITY=-10
477- OVS_BRCOMPATD_PRIORITY=-10
478-
479- DB_FILE=$etcdir/conf.db
480- DB_SOCK=$rundir/db.sock
481- DB_SCHEMA=$datadir/vswitch.ovsschema
482-
483- PROTOCOL=gre
484- DPORT=
485- SPORT=
486-
487- if (lsb_release --id) >/dev/null 2>&1; then
488- SYSTEM_TYPE=`lsb_release --id -s`
489- system_release=`lsb_release --release -s`
490- system_codename=`lsb_release --codename -s`
491- SYSTEM_VERSION="${system_release}-${system_codename}"
492- else
493- SYSTEM_TYPE=unknown
494- SYSTEM_VERSION=unknown
495- fi
496-}
497-
498-usage () {
499- set_defaults
500- cat <<EOF
501-$0: controls Open vSwitch daemons
502-usage: $0 [OPTIONS] COMMAND
503-
504-This program is intended to be invoked internally by Open vSwitch startup
505-scripts. System administrators should not normally invoke it directly.
506-
507-Commands:
508- start start Open vSwitch daemons
509- stop stop Open vSwitch daemons
510- status check whether Open vSwitch daemons are running
511- version print versions of Open vSwitch daemons
512- load-kmod insert modules if not already present
513- force-reload-kmod save OVS network device state, stop OVS, unload kernel
514- module, reload kernel module, start OVS, restore state
515- enable-protocol enable protocol specified in options with iptables
516- help display this help message
517-
518-One of the following options is required for "start" and "force-reload-kmod":
519- --system-id=UUID set specific ID to uniquely identify this system
520- --system-id=random use a random but persistent UUID to identify this system
521-
522-Other important options for "start" and "force-reload-kmod":
523- --system-type=TYPE set system type (e.g. "XenServer")
524- --system-version=VERSION set system version (e.g. "5.6.100-39265p")
525- --external-id="key=value"
526- add given key-value pair to Open_vSwitch external-ids
527- --delete-bridges delete all bridges just before starting ovs-vswitchd
528-
529-Less important options for "start" and "force-reload-kmod":
530- --daemon-cwd=DIR set working dir for OVS daemons (default: $DAEMON_CWD)
531- --no-force-corefiles do not force on core dumps for OVS daemons
532- --no-mlockall do not lock all of ovs-vswitchd into memory
533- --ovsdb-server-priority=NICE set ovsdb-server's niceness (default: $OVSDB_SERVER_PRIORITY)
534- --ovs-vswitchd-priority=NICE set ovs-vswitchd's niceness (default: $OVS_VSWITCHD_PRIORITY)
535- --ovs-brcompatd-priority=NICE set ovs-brcompatd's niceness (default: $OVS_BRCOMPATD_PRIORITY)
536-
537-Options for "start", "force-reload-kmod", "load-kmod", "status", and "version":
538- --brcompat enable Linux bridge compatibility module and daemon
539-
540-File location options:
541- --db-file=FILE database file name (default: $DB_FILE)
542- --db-sock=SOCKET JSON-RPC socket name (default: $DB_SOCK)
543- --db-schema=FILE database schema file name (default: $DB_SCHEMA)
544-
545-Options for "enable-protocol":
546- --protocol=PROTOCOL protocol to enable with iptables (default: gre)
547- --sport=PORT source port to match (for tcp or udp protocol)
548- --dport=PORT ddestination port to match (for tcp or udp protocol)
549-
550-Other options:
551- -h, --help display this help message
552- -V, --version display version information
553-
554-Default directories with "configure" option and environment variable override:
555- logs: @LOGDIR@ (--log-dir, OVS_LOGDIR)
556- pidfiles and sockets: @RUNDIR@ (--run-dir, OVS_RUNDIR)
557- system configuration: @sysconfdir@ (--sysconfdir, OVS_SYSCONFDIR)
558- data files: @pkgdatadir@ (--pkgdatadir, OVS_PKGDATADIR)
559- user binaries: @bindir@ (--bindir, OVS_BINDIR)
560- system binaries: @sbindir@ (--sbindir, OVS_SBINDIR)
561-
562-Please report bugs to bugs@openvswitch.org (see REPORTING-BUGS for details).
563-EOF
564-
565- exit 0
566-}
567-
568-set_option () {
569- var=`echo "$option" | tr abcdefghijklmnopqrstuvwxyz- ABCDEFGHIJKLMNOPQRSTUVWXYZ_`
570- eval set=\${$var+yes}
571- eval old_value=\$$var
572- if test X$set = X || \
573- (test $type = bool && \
574- test X"$old_value" != Xno && test X"$old_value" != Xyes); then
575- echo >&2 "$0: unknown option \"$arg\" (use --help for help)"
576- return
577- fi
578- eval $var=\$value
579-}
580-
581-daemons () {
582- echo ovsdb-server ovs-vswitchd
583- if test X"$BRCOMPAT" = Xyes; then
584- echo ovs-brcompatd
585- fi
586-}
587-
588-set_defaults
589-extra_ids=
590-command=
591-for arg
592-do
593- case $arg in
594- -h | --help)
595- usage
596- ;;
597- -V | --version)
598- echo "$0 (Open vSwitch) $VERSION$BUILDNR"
599- exit 0
600- ;;
601- --external-id=*)
602- value=`expr X"$arg" : 'X[^=]*=\(.*\)'`
603- case $value in
604- *=*)
605- extra_ids="$extra_ids external-ids:$value"
606- ;;
607- *)
608- echo >&2 "$0: --external-id argument not in the form \"key=value\""
609- exit 1
610- ;;
611- esac
612- ;;
613- --[a-z]*=*)
614- option=`expr X"$arg" : 'X--\([^=]*\)'`
615- value=`expr X"$arg" : 'X[^=]*=\(.*\)'`
616- type=string
617- set_option
618- ;;
619- --no-[a-z]*)
620- option=`expr X"$arg" : 'X--no-\(.*\)'`
621- value=no
622- type=bool
623- set_option
624- ;;
625- --[a-z]*)
626- option=`expr X"$arg" : 'X--\(.*\)'`
627- value=yes
628- type=bool
629- set_option
630- ;;
631- -*)
632- echo >&2 "$0: unknown option \"$arg\" (use --help for help)"
633- exit 1
634- ;;
635- *)
636- if test X"$command" = X; then
637- command=$arg
638- else
639- echo >&2 "$0: exactly one non-option argument required (use --help for help)"
640- exit 1
641- fi
642- ;;
643- esac
644-done
645-case $command in
646- start)
647- start
648- ;;
649- stop)
650- stop
651- ;;
652- status)
653- rc=0
654- for daemon in `daemons`; do
655- daemon_status $daemon || rc=$?
656- done
657- exit $rc
658- ;;
659- version)
660- for daemon in `daemons`; do
661- $daemon --version
662- done
663- ;;
664- force-reload-kmod)
665- force_reload_kmod
666- ;;
667- load-kmod)
668- insert_mod_if_required
669- ;;
670- enable-protocol)
671- enable_protocol
672- ;;
673- help)
674- usage
675- ;;
676- '')
677- echo >&2 "$0: missing command name (use --help for help)"
678- exit 1
679- ;;
680- *)
681- echo >&2 "$0: unknown command \"$command\" (use --help for help)"
682- exit 1
683- ;;
684-esac
685-
686
687=== removed directory '.pc/bug-684057-ovs-ctl-Add-support-for-newer-module-name.patch'
688=== removed directory '.pc/bug-684057-ovs-ctl-Add-support-for-newer-module-name.patch/utilities'
689=== removed file '.pc/bug-684057-ovs-ctl-Add-support-for-newer-module-name.patch/utilities/ovs-ctl.in'
690--- .pc/bug-684057-ovs-ctl-Add-support-for-newer-module-name.patch/utilities/ovs-ctl.in 2012-08-06 16:59:01 +0000
691+++ .pc/bug-684057-ovs-ctl-Add-support-for-newer-module-name.patch/utilities/ovs-ctl.in 1970-01-01 00:00:00 +0000
692@@ -1,581 +0,0 @@
693-#! /bin/sh
694-# Copyright (C) 2009, 2010, 2011, 2012 Nicira Networks, Inc.
695-#
696-# Licensed under the Apache License, Version 2.0 (the "License");
697-# you may not use this file except in compliance with the License.
698-# You may obtain a copy of the License at:
699-#
700-# http://www.apache.org/licenses/LICENSE-2.0
701-#
702-# Unless required by applicable law or agreed to in writing, software
703-# distributed under the License is distributed on an "AS IS" BASIS,
704-# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
705-# See the License for the specific language governing permissions and
706-# limitations under the License.
707-
708-case $0 in
709- */*) dir0=`echo "$0" | sed 's,/[^/]*$,,'` ;;
710- *) dir0=./ ;;
711-esac
712-. "$dir0/ovs-lib" || exit 1
713-
714-for dir in "$sbindir" "$bindir" /sbin /bin /usr/sbin /usr/bin; do
715- case :$PATH: in
716- *:$dir:*) ;;
717- *) PATH=$PATH:$dir ;;
718- esac
719-done
720-
721-## ----- ##
722-## start ##
723-## ----- ##
724-
725-insert_openvswitch_mod_if_required () {
726- # If openvswitch_mod is already loaded then we're done.
727- test -e /sys/module/openvswitch_mod && return 0
728-
729- # Load openvswitch_mod. If that's successful then we're done.
730- action "Inserting openvswitch module" modprobe openvswitch_mod && return 0
731-
732- # If the bridge module is loaded, then that might be blocking
733- # openvswitch_mod. Try to unload it, if there are no bridges.
734- test -e /sys/module/bridge || return 1
735- bridges=`echo /sys/class/net/*/bridge | sed 's,/sys/class/net/,,g;s,/bridge,,g'`
736- if test "$bridges" != "*"; then
737- log_warning_msg "not removing bridge module because bridges exist ($bridges)"
738- return 1
739- fi
740- action "removing bridge module" rmmod bridge || return 1
741-
742- # Try loading openvswitch_mod again.
743- action "Inserting openvswitch module" modprobe openvswitch_mod
744-}
745-
746-insert_brcompat_mod_if_required () {
747- test -e /sys/module/brcompat_mod && return 0
748- action "Inserting brcompat module" modprobe brcompat_mod
749-}
750-
751-insert_mod_if_required () {
752- insert_openvswitch_mod_if_required || return 1
753- if test X"$BRCOMPAT" = Xyes; then
754- if insert_brcompat_mod_if_required; then
755- :
756- else
757- log_warning_msg "could not load brcompat module, disabling bridge compatibility"
758- BRCOMPAT=no
759- fi
760- fi
761-}
762-
763-ovs_vsctl () {
764- ovs-vsctl --no-wait --timeout=5 "$@"
765-}
766-
767-ovsdb_tool () {
768- ovsdb-tool -vANY:console:off "$@"
769-}
770-
771-create_db () {
772- action "Creating empty database $DB_FILE" ovsdb_tool create "$DB_FILE" "$DB_SCHEMA"
773-}
774-
775-upgrade_db () {
776- schemaver=`ovsdb_tool schema-version "$DB_SCHEMA"`
777- if test ! -e "$DB_FILE"; then
778- log_warning_msg "$DB_FILE does not exist"
779- install -d -m 755 -o root -g root `dirname $DB_FILE`
780- create_db
781- elif test X"`ovsdb_tool needs-conversion "$DB_FILE" "$DB_SCHEMA"`" != Xno; then
782- # Back up the old version.
783- version=`ovsdb_tool db-version "$DB_FILE"`
784- cksum=`ovsdb_tool db-cksum "$DB_FILE" | awk '{print $1}'`
785- backup=$DB_FILE.backup$version-$cksum
786- action "Backing up database to $backup" cp "$DB_FILE" "$backup" || return 1
787-
788- # Compact database. This is important if the old schema did not enable
789- # garbage collection (i.e. if it did not have any tables with "isRoot":
790- # true) but the new schema does. In that situation the old database
791- # may contain a transaction that creates a record followed by a
792- # transaction that creates the first use of the record. Replaying that
793- # series of transactions against the new database schema (as "convert"
794- # does) would cause the record to be dropped by the first transaction,
795- # then the second transaction would cause a referential integrity
796- # failure (for a strong reference).
797- #
798- # Errors might occur on an Open vSwitch downgrade if ovsdb-tool doesn't
799- # understand some feature of the schema used in the OVSDB version that
800- # we're downgrading from, so we don't give up on error.
801- action "Compacting database" ovsdb_tool compact "$DB_FILE"
802-
803- # Upgrade or downgrade schema.
804- if action "Converting database schema" ovsdb_tool convert "$DB_FILE" "$DB_SCHEMA"; then
805- :
806- else
807- log_warning_msg "Schema conversion failed, using empty database instead"
808- rm -f "$DB_FILE"
809- create_db
810- fi
811- fi
812-}
813-
814-set_system_ids () {
815- set ovs_vsctl set Open_vSwitch .
816-
817- OVS_VERSION=`ovs-vswitchd --version | sed 's/.*) //;1q'`
818- set "$@" ovs-version="$OVS_VERSION"
819-
820- case $SYSTEM_ID in
821- random)
822- id_file=$etcdir/system-id.conf
823- uuid_file=$etcdir/install_uuid.conf
824- if test -e "$id_file"; then
825- SYSTEM_ID=`cat "$id_file"`
826- elif test -e "$uuid_file"; then
827- # Migrate from old file name.
828- . "$uuid_file"
829- SYSTEM_ID=$INSTALLATION_UUID
830- echo "$SYSTEM_ID" > "$id_file"
831- elif SYSTEM_ID=`uuidgen`; then
832- echo "$SYSTEM_ID" > "$id_file"
833- else
834- log_failure_msg "missing uuidgen, could not generate system ID"
835- fi
836- ;;
837-
838- '')
839- log_failure_msg "system ID not configured, please use --system-id"
840- ;;
841-
842- *)
843- ;;
844- esac
845- set "$@" external-ids:system-id="\"$SYSTEM_ID\""
846-
847- if test X"$SYSTEM_TYPE" != X; then
848- set "$@" system-type="\"$SYSTEM_TYPE\""
849- else
850- log_failure_msg "no default system type, please use --system-type"
851- fi
852-
853- if test X"$SYSTEM_VERSION" != X; then
854- set "$@" system-version="\"$SYSTEM_VERSION\""
855- else
856- log_failure_msg "no default system version, please use --system-version"
857- fi
858-
859- action "Configuring Open vSwitch system IDs" "$@" $extra_ids
860-}
861-
862-start () {
863- if test X"$FORCE_COREFILES" = Xyes; then
864- ulimit -Sc 67108864
865- fi
866-
867- insert_mod_if_required || return 1
868-
869- if daemon_is_running ovsdb-server; then
870- log_success_msg "ovsdb-server is already running"
871- else
872- # Create initial database or upgrade database schema.
873- upgrade_db || return 1
874-
875- # Start ovsdb-server.
876- set ovsdb-server "$DB_FILE"
877- set "$@" -vANY:CONSOLE:EMER -vANY:SYSLOG:ERR -vANY:FILE:INFO
878- set "$@" --remote=punix:"$DB_SOCK"
879- set "$@" --remote=db:Open_vSwitch,manager_options
880- set "$@" --private-key=db:SSL,private_key
881- set "$@" --certificate=db:SSL,certificate
882- set "$@" --bootstrap-ca-cert=db:SSL,ca_cert
883- start_daemon "$OVSDB_SERVER_PRIORITY" "$@" || return 1
884-
885- # Initialize database settings.
886- ovs_vsctl -- init -- set Open_vSwitch . db-version="$schemaver" \
887- || return 1
888- set_system_ids || return 1
889- if test X"$DELETE_BRIDGES" = Xyes; then
890- for bridge in `ovs_vsctl list-br`; do
891- ovs_vsctl del-br $bridge
892- done
893- fi
894- fi
895-
896- if daemon_is_running ovs-vswitchd; then
897- log_success_msg "ovs-vswitchd is already running"
898- else
899- # Increase the limit on the number of open file descriptors.
900- # ovs-vswitchd needs 16 per datapath, plus a few extra, so this
901- # should allow for 256 (or more) bridges.
902- ulimit -n 5000
903-
904- # Start ovs-vswitchd.
905- set ovs-vswitchd unix:"$DB_SOCK"
906- set "$@" -vANY:CONSOLE:EMER -vANY:SYSLOG:ERR -vANY:FILE:INFO
907- if test X"$MLOCKALL" != Xno; then
908- set "$@" --mlockall
909- fi
910- start_daemon "$OVS_VSWITCHD_PRIORITY" "$@"
911- fi
912-
913- if daemon_is_running ovs-brcompatd; then
914- log_success_msg "ovs-brcompatd is already running"
915- elif test X"$BRCOMPAT" = Xyes; then
916- set ovs-brcompatd
917- set "$@" -vANY:CONSOLE:EMER -vANY:SYSLOG:ERR -vANY:FILE:INFO
918- start_daemon "$OVS_BRCOMPATD_PRIORITY" "$@"
919- fi
920-}
921-
922-## ---- ##
923-## stop ##
924-## ---- ##
925-
926-stop () {
927- stop_daemon ovs-brcompatd
928- stop_daemon ovs-vswitchd
929- stop_daemon ovsdb-server
930-}
931-
932-## ----------------- ##
933-## force-reload-kmod ##
934-## ----------------- ##
935-
936-internal_interfaces () {
937- # Outputs a list of internal interfaces:
938- #
939- # - There is an internal interface for every bridge, whether it
940- # has an Interface record or not and whether the Interface
941- # record's 'type' is properly set or not.
942- #
943- # - There is an internal interface for each Interface record whose
944- # 'type' is 'internal'.
945- #
946- # But ignore interfaces that don't really exist.
947- for d in `(ovs_vsctl --bare \
948- -- --columns=name find Interface type=internal \
949- -- list-br) | sort -u`
950- do
951- if test -e "/sys/class/net/$d"; then
952- printf "%s " "$d"
953- fi
954- done
955-}
956-
957-save_interfaces () {
958- "$datadir/scripts/ovs-save" $ifaces > "$script"
959-}
960-
961-force_reload_kmod () {
962- ifaces=`internal_interfaces`
963- action "Detected internal interfaces: $ifaces" true
964-
965- stop
966-
967- script=`mktemp`
968- trap 'rm -f "$script"' 0 1 2 13 15
969- if action "Saving interface configuration" save_interfaces; then
970- :
971- else
972- log_warning_msg "Failed to save configuration, not replacing kernel module"
973- start
974- exit 1
975- fi
976- chmod +x "$script"
977-
978- for dp in `ovs-dpctl dump-dps`; do
979- action "Removing datapath: $dp" ovs-dpctl del-dp "$dp"
980- done
981-
982- if test -e /sys/module/brcompat_mod; then
983- action "Removing brcompat module" rmmod brcompat_mod
984- fi
985- if test -e /sys/module/openvswitch_mod; then
986- action "Removing openvswitch module" rmmod openvswitch_mod
987- fi
988-
989- start
990-
991- action "Restoring interface configuration" "$script"
992- rc=$?
993- if test $rc = 0; then
994- level=debug
995- else
996- level=err
997- fi
998- log="logger -p daemon.$level -t ovs-save"
999- $log "force-reload-kmod interface restore script exited with status $rc:"
1000- $log -f "$script"
1001-}
1002-
1003-## --------------- ##
1004-## enable-protocol ##
1005-## --------------- ##
1006-
1007-enable_protocol () {
1008- # Translate the protocol name to a number, because "iptables -n -L" prints
1009- # some protocols by name (despite the -n) and therefore we need to look for
1010- # both forms.
1011- #
1012- # (iptables -S output is more uniform but old iptables doesn't have it.)
1013- protonum=`grep "^$PROTOCOL[ ]" /etc/protocols | awk '{print $2}'`
1014- if expr X"$protonum" : X'[0-9]\{1,\}$' > /dev/null; then :; else
1015- log_failure_msg "unknown protocol $PROTOCOL"
1016- return 1
1017- fi
1018-
1019- name=$PROTOCOL
1020- match="(\$2 == \"$PROTOCOL\" || \$2 == $protonum)"
1021- insert="iptables -I INPUT -p $PROTOCOL"
1022- if test X"$DPORT" != X; then
1023- name="$name to port $DPORT"
1024- match="$match && /dpt:$DPORT/"
1025- insert="$insert --dport $DPORT"
1026- fi
1027- if test X"$SPORT" != X; then
1028- name="$name from port $SPORT"
1029- match="$match && /spt:$SPORT/"
1030- insert="$insert --sport $SPORT"
1031- fi
1032- insert="$insert -j ACCEPT"
1033-
1034- if (iptables -n -L INPUT) >/dev/null 2>&1; then
1035- if iptables -n -L INPUT | awk "$match { n++ } END { exit n == 0 }"
1036- then
1037- # There's already a rule for this protocol. Don't override it.
1038- log_success_msg "iptables already has a rule for $name, not explicitly enabling"
1039- else
1040- action "Enabling $name with iptables" $insert
1041- fi
1042- elif (iptables --version) >/dev/null 2>&1; then
1043- action "cannot list iptables rules, not adding a rule for $name"
1044- else
1045- action "iptables binary not installed, not adding a rule for $name"
1046- fi
1047-}
1048-
1049-## ---- ##
1050-## main ##
1051-## ---- ##
1052-
1053-set_defaults () {
1054- SYSTEM_ID=
1055-
1056- DELETE_BRIDGES=no
1057- BRCOMPAT=no
1058-
1059- DAEMON_CWD=/
1060- FORCE_COREFILES=yes
1061- MLOCKALL=yes
1062- OVSDB_SERVER_PRIORITY=-10
1063- OVS_VSWITCHD_PRIORITY=-10
1064- OVS_BRCOMPATD_PRIORITY=-10
1065-
1066- DB_FILE=$dbdir/conf.db
1067- DB_SOCK=$rundir/db.sock
1068- DB_SCHEMA=$datadir/vswitch.ovsschema
1069-
1070- PROTOCOL=gre
1071- DPORT=
1072- SPORT=
1073-
1074- if (lsb_release --id) >/dev/null 2>&1; then
1075- SYSTEM_TYPE=`lsb_release --id -s`
1076- system_release=`lsb_release --release -s`
1077- system_codename=`lsb_release --codename -s`
1078- SYSTEM_VERSION="${system_release}-${system_codename}"
1079- else
1080- SYSTEM_TYPE=unknown
1081- SYSTEM_VERSION=unknown
1082- fi
1083-}
1084-
1085-usage () {
1086- set_defaults
1087- cat <<EOF
1088-$0: controls Open vSwitch daemons
1089-usage: $0 [OPTIONS] COMMAND
1090-
1091-This program is intended to be invoked internally by Open vSwitch startup
1092-scripts. System administrators should not normally invoke it directly.
1093-
1094-Commands:
1095- start start Open vSwitch daemons
1096- stop stop Open vSwitch daemons
1097- status check whether Open vSwitch daemons are running
1098- version print versions of Open vSwitch daemons
1099- load-kmod insert modules if not already present
1100- force-reload-kmod save OVS network device state, stop OVS, unload kernel
1101- module, reload kernel module, start OVS, restore state
1102- enable-protocol enable protocol specified in options with iptables
1103- help display this help message
1104-
1105-One of the following options is required for "start" and "force-reload-kmod":
1106- --system-id=UUID set specific ID to uniquely identify this system
1107- --system-id=random use a random but persistent UUID to identify this system
1108-
1109-Other important options for "start" and "force-reload-kmod":
1110- --system-type=TYPE set system type (e.g. "XenServer")
1111- --system-version=VERSION set system version (e.g. "5.6.100-39265p")
1112- --external-id="key=value"
1113- add given key-value pair to Open_vSwitch external-ids
1114- --delete-bridges delete all bridges just before starting ovs-vswitchd
1115-
1116-Less important options for "start" and "force-reload-kmod":
1117- --daemon-cwd=DIR set working dir for OVS daemons (default: $DAEMON_CWD)
1118- --no-force-corefiles do not force on core dumps for OVS daemons
1119- --no-mlockall do not lock all of ovs-vswitchd into memory
1120- --ovsdb-server-priority=NICE set ovsdb-server's niceness (default: $OVSDB_SERVER_PRIORITY)
1121- --ovs-vswitchd-priority=NICE set ovs-vswitchd's niceness (default: $OVS_VSWITCHD_PRIORITY)
1122- --ovs-brcompatd-priority=NICE set ovs-brcompatd's niceness (default: $OVS_BRCOMPATD_PRIORITY)
1123-
1124-Options for "start", "force-reload-kmod", "load-kmod", "status", and "version":
1125- --brcompat enable Linux bridge compatibility module and daemon
1126-
1127-File location options:
1128- --db-file=FILE database file name (default: $DB_FILE)
1129- --db-sock=SOCKET JSON-RPC socket name (default: $DB_SOCK)
1130- --db-schema=FILE database schema file name (default: $DB_SCHEMA)
1131-
1132-Options for "enable-protocol":
1133- --protocol=PROTOCOL protocol to enable with iptables (default: gre)
1134- --sport=PORT source port to match (for tcp or udp protocol)
1135- --dport=PORT ddestination port to match (for tcp or udp protocol)
1136-
1137-Other options:
1138- -h, --help display this help message
1139- -V, --version display version information
1140-
1141-Default directories with "configure" option and environment variable override:
1142- logs: @LOGDIR@ (--with-logdir, OVS_LOGDIR)
1143- pidfiles and sockets: @RUNDIR@ (--with-rundir, OVS_RUNDIR)
1144- conf.db: @DBDIR@ (--with-dbdir, OVS_DBDIR)
1145- system configuration: @sysconfdir@ (--sysconfdir, OVS_SYSCONFDIR)
1146- data files: @pkgdatadir@ (--pkgdatadir, OVS_PKGDATADIR)
1147- user binaries: @bindir@ (--bindir, OVS_BINDIR)
1148- system binaries: @sbindir@ (--sbindir, OVS_SBINDIR)
1149-
1150-Please report bugs to bugs@openvswitch.org (see REPORTING-BUGS for details).
1151-EOF
1152-
1153- exit 0
1154-}
1155-
1156-set_option () {
1157- var=`echo "$option" | tr abcdefghijklmnopqrstuvwxyz- ABCDEFGHIJKLMNOPQRSTUVWXYZ_`
1158- eval set=\${$var+yes}
1159- eval old_value=\$$var
1160- if test X$set = X || \
1161- (test $type = bool && \
1162- test X"$old_value" != Xno && test X"$old_value" != Xyes); then
1163- echo >&2 "$0: unknown option \"$arg\" (use --help for help)"
1164- return
1165- fi
1166- eval $var=\$value
1167-}
1168-
1169-daemons () {
1170- echo ovsdb-server ovs-vswitchd
1171- if test X"$BRCOMPAT" = Xyes; then
1172- echo ovs-brcompatd
1173- fi
1174-}
1175-
1176-set_defaults
1177-extra_ids=
1178-command=
1179-for arg
1180-do
1181- case $arg in
1182- -h | --help)
1183- usage
1184- ;;
1185- -V | --version)
1186- echo "$0 (Open vSwitch) $VERSION$BUILDNR"
1187- exit 0
1188- ;;
1189- --external-id=*)
1190- value=`expr X"$arg" : 'X[^=]*=\(.*\)'`
1191- case $value in
1192- *=*)
1193- extra_ids="$extra_ids external-ids:$value"
1194- ;;
1195- *)
1196- echo >&2 "$0: --external-id argument not in the form \"key=value\""
1197- exit 1
1198- ;;
1199- esac
1200- ;;
1201- --[a-z]*=*)
1202- option=`expr X"$arg" : 'X--\([^=]*\)'`
1203- value=`expr X"$arg" : 'X[^=]*=\(.*\)'`
1204- type=string
1205- set_option
1206- ;;
1207- --no-[a-z]*)
1208- option=`expr X"$arg" : 'X--no-\(.*\)'`
1209- value=no
1210- type=bool
1211- set_option
1212- ;;
1213- --[a-z]*)
1214- option=`expr X"$arg" : 'X--\(.*\)'`
1215- value=yes
1216- type=bool
1217- set_option
1218- ;;
1219- -*)
1220- echo >&2 "$0: unknown option \"$arg\" (use --help for help)"
1221- exit 1
1222- ;;
1223- *)
1224- if test X"$command" = X; then
1225- command=$arg
1226- else
1227- echo >&2 "$0: exactly one non-option argument required (use --help for help)"
1228- exit 1
1229- fi
1230- ;;
1231- esac
1232-done
1233-case $command in
1234- start)
1235- start
1236- ;;
1237- stop)
1238- stop
1239- ;;
1240- status)
1241- rc=0
1242- for daemon in `daemons`; do
1243- daemon_status $daemon || rc=$?
1244- done
1245- exit $rc
1246- ;;
1247- version)
1248- for daemon in `daemons`; do
1249- $daemon --version
1250- done
1251- ;;
1252- force-reload-kmod)
1253- force_reload_kmod
1254- ;;
1255- load-kmod)
1256- insert_mod_if_required
1257- ;;
1258- enable-protocol)
1259- enable_protocol
1260- ;;
1261- help)
1262- usage
1263- ;;
1264- '')
1265- echo >&2 "$0: missing command name (use --help for help)"
1266- exit 1
1267- ;;
1268- *)
1269- echo >&2 "$0: unknown command \"$command\" (use --help for help)"
1270- exit 1
1271- ;;
1272-esac
1273-
1274
1275=== removed directory '.pc/debian-changes-1.4.2+git20120612-6'
1276=== removed file '.pc/debian-changes-1.4.2+git20120612-6/Makefile.in'
1277--- .pc/debian-changes-1.4.2+git20120612-6/Makefile.in 2012-07-23 09:46:41 +0000
1278+++ .pc/debian-changes-1.4.2+git20120612-6/Makefile.in 1970-01-01 00:00:00 +0000
1279@@ -1,4207 +0,0 @@
1280-# Makefile.in generated by automake 1.11.1 from Makefile.am.
1281-# @configure_input@
1282-
1283-# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
1284-# 2003, 2004, 2005, 2006, 2007, 2008, 2009 Free Software Foundation,
1285-# Inc.
1286-# This Makefile.in is free software; the Free Software Foundation
1287-# gives unlimited permission to copy and/or distribute it,
1288-# with or without modifications, as long as this notice is preserved.
1289-
1290-# This program is distributed in the hope that it will be useful,
1291-# but WITHOUT ANY WARRANTY, to the extent permitted by law; without
1292-# even the implied warranty of MERCHANTABILITY or FITNESS FOR A
1293-# PARTICULAR PURPOSE.
1294-
1295-@SET_MAKE@
1296-
1297-# Copyright (C) 2007, 2008, 2009, 2010, 2011 Nicira Networks, Inc.
1298-#
1299-# Copying and distribution of this file, with or without modification,
1300-# are permitted in any medium without royalty provided the copyright
1301-# notice and this notice are preserved. This file is offered as-is,
1302-# without warranty of any kind.
1303-
1304-# Generated automatically -- do not modify! -*- buffer-read-only: t -*-
1305-
1306-# Copyright (C) 2009, 2010, 2011 Nicira Networks, Inc.
1307-#
1308-# Copying and distribution of this file, with or without modification,
1309-# are permitted in any medium without royalty provided the copyright
1310-# notice and this notice are preserved. This file is offered as-is,
1311-# without warranty of any kind.
1312-
1313-# Copyright (C) 2009, 2010, 2011 Nicira Networks, Inc.
1314-#
1315-# Copying and distribution of this file, with or without modification,
1316-# are permitted in any medium without royalty provided the copyright
1317-# notice and this notice are preserved. This file is offered as-is,
1318-# without warranty of any kind.
1319-
1320-# Copyright (C) 2009, 2010, 2011 Nicira Networks, Inc.
1321-#
1322-# Copying and distribution of this file, with or without modification,
1323-# are permitted in any medium without royalty provided the copyright
1324-# notice and this notice are preserved. This file is offered as-is,
1325-# without warranty of any kind.
1326-
1327-# Copyright (C) 2009, 2010, 2011 Nicira Networks, Inc.
1328-#
1329-# Copying and distribution of this file, with or without modification,
1330-# are permitted in any medium without royalty provided the copyright
1331-# notice and this notice are preserved. This file is offered as-is,
1332-# without warranty of any kind.
1333-
1334-
1335-
1336-
1337-
1338-VPATH = @srcdir@
1339-pkgdatadir = $(datadir)/@PACKAGE@
1340-pkgincludedir = $(includedir)/@PACKAGE@
1341-pkglibdir = $(libdir)/@PACKAGE@
1342-pkglibexecdir = $(libexecdir)/@PACKAGE@
1343-am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd
1344-install_sh_DATA = $(install_sh) -c -m 644
1345-install_sh_PROGRAM = $(install_sh) -c
1346-install_sh_SCRIPT = $(install_sh) -c
1347-INSTALL_HEADER = $(INSTALL_DATA)
1348-transform = $(program_transform_name)
1349-NORMAL_INSTALL = :
1350-PRE_INSTALL = :
1351-POST_INSTALL = :
1352-NORMAL_UNINSTALL = :
1353-PRE_UNINSTALL = :
1354-POST_UNINSTALL = :
1355-@NDEBUG_TRUE@am__append_1 = -DNDEBUG
1356-@NDEBUG_TRUE@am__append_2 = -fomit-frame-pointer
1357-bin_PROGRAMS = utilities/ovs-appctl$(EXEEXT) \
1358- utilities/ovs-controller$(EXEEXT) utilities/ovs-dpctl$(EXEEXT) \
1359- utilities/ovs-ofctl$(EXEEXT) utilities/ovs-vsctl$(EXEEXT) \
1360- utilities/ovs-benchmark$(EXEEXT) ovsdb/ovsdb-tool$(EXEEXT) \
1361- ovsdb/ovsdb-client$(EXEEXT)
1362-sbin_PROGRAMS = $(am__EXEEXT_2) vswitchd/ovs-vswitchd$(EXEEXT) \
1363- $(am__EXEEXT_3) ovsdb/ovsdb-server$(EXEEXT)
1364-noinst_PROGRAMS = $(am__EXEEXT_1) tests/test-aes128$(EXEEXT) \
1365- tests/test-bundle$(EXEEXT) tests/test-classifier$(EXEEXT) \
1366- tests/test-csum$(EXEEXT) tests/test-file_name$(EXEEXT) \
1367- tests/test-flows$(EXEEXT) tests/test-hash$(EXEEXT) \
1368- tests/test-hmap$(EXEEXT) tests/test-json$(EXEEXT) \
1369- tests/test-jsonrpc$(EXEEXT) tests/test-list$(EXEEXT) \
1370- tests/test-lockfile$(EXEEXT) tests/test-multipath$(EXEEXT) \
1371- tests/test-packets$(EXEEXT) tests/test-random$(EXEEXT) \
1372- tests/test-stp$(EXEEXT) tests/test-unix-socket$(EXEEXT) \
1373- tests/test-odp$(EXEEXT) tests/test-ovsdb$(EXEEXT) \
1374- tests/test-reconnect$(EXEEXT) tests/test-sha1$(EXEEXT) \
1375- tests/test-timeval$(EXEEXT) tests/test-strtok_r$(EXEEXT) \
1376- tests/test-type-props$(EXEEXT) tests/test-util$(EXEEXT) \
1377- tests/test-uuid$(EXEEXT) tests/test-vconn$(EXEEXT) \
1378- tests/test-byte-order$(EXEEXT)
1379-@HAVE_GROFF_TRUE@am__append_3 = manpage-check
1380-@HAVE_GROFF_TRUE@am__append_4 = manpage-check
1381-DIST_COMMON = README $(am__configure_deps) $(am__noinst_HEADERS_DIST) \
1382- $(dist_check_SCRIPTS) $(dist_man_MANS) $(dist_pkgdata_DATA) \
1383- $(dist_pkgdata_SCRIPTS) $(dist_sbin_SCRIPTS) \
1384- $(dist_scripts_DATA) $(dist_scripts_SCRIPTS) \
1385- $(srcdir)/Makefile.am $(srcdir)/Makefile.in \
1386- $(srcdir)/config.h.in $(srcdir)/debian/automake.mk \
1387- $(srcdir)/include/automake.mk \
1388- $(srcdir)/include/linux/automake.mk \
1389- $(srcdir)/include/openflow/automake.mk \
1390- $(srcdir)/include/openvswitch/automake.mk \
1391- $(srcdir)/include/sparse/automake.mk $(srcdir)/lib/automake.mk \
1392- $(srcdir)/manpages.mk $(srcdir)/ofproto/automake.mk \
1393- $(srcdir)/ovsdb/automake.mk \
1394- $(srcdir)/ovsdb/ovsdbmonitor/automake.mk \
1395- $(srcdir)/python/automake.mk \
1396- $(srcdir)/python/compat/automake.mk $(srcdir)/rhel/automake.mk \
1397- $(srcdir)/tests/automake.mk $(srcdir)/third-party/automake.mk \
1398- $(srcdir)/utilities/automake.mk \
1399- $(srcdir)/utilities/bugtool/automake.mk \
1400- $(srcdir)/vswitchd/automake.mk $(srcdir)/xenserver/automake.mk \
1401- $(top_srcdir)/configure $(top_srcdir)/datapath/linux/Kbuild.in \
1402- $(top_srcdir)/datapath/linux/Makefile.in \
1403- $(top_srcdir)/datapath/linux/Makefile.main.in \
1404- $(top_srcdir)/tests/atlocal.in AUTHORS COPYING NEWS \
1405- build-aux/compile build-aux/depcomp build-aux/install-sh \
1406- build-aux/missing
1407-@HAVE_WNO_UNUSED_TRUE@am__append_5 = -Wno-unused
1408-@HAVE_WNO_UNUSED_PARAMETER_TRUE@am__append_6 = -Wno-unused-parameter
1409-@HAVE_NETLINK_TRUE@am__append_7 = \
1410-@HAVE_NETLINK_TRUE@ lib/dpif-linux.c \
1411-@HAVE_NETLINK_TRUE@ lib/dpif-linux.h \
1412-@HAVE_NETLINK_TRUE@ lib/netdev-linux.c \
1413-@HAVE_NETLINK_TRUE@ lib/netdev-linux.h \
1414-@HAVE_NETLINK_TRUE@ lib/netdev-vport.c \
1415-@HAVE_NETLINK_TRUE@ lib/netdev-vport.h \
1416-@HAVE_NETLINK_TRUE@ lib/netlink-notifier.c \
1417-@HAVE_NETLINK_TRUE@ lib/netlink-notifier.h \
1418-@HAVE_NETLINK_TRUE@ lib/netlink-protocol.h \
1419-@HAVE_NETLINK_TRUE@ lib/netlink-socket.c \
1420-@HAVE_NETLINK_TRUE@ lib/netlink-socket.h \
1421-@HAVE_NETLINK_TRUE@ lib/rtnetlink-link.c \
1422-@HAVE_NETLINK_TRUE@ lib/rtnetlink-link.h \
1423-@HAVE_NETLINK_TRUE@ lib/route-table.c \
1424-@HAVE_NETLINK_TRUE@ lib/route-table.h
1425-
1426-@HAVE_OPENSSL_TRUE@am__append_8 = lib/stream-ssl.c
1427-@HAVE_OPENSSL_TRUE@am__append_9 = lib/dhparams.c
1428-@HAVE_OPENSSL_FALSE@am__append_10 = lib/stream-nossl.c
1429-@USE_LINKER_SECTIONS_FALSE@am__append_11 = lib/coverage.def \
1430-@USE_LINKER_SECTIONS_FALSE@ lib/stress.def lib/vlog-modules.def
1431-@HAVE_PYTHON_TRUE@am__append_12 = \
1432-@HAVE_PYTHON_TRUE@ utilities/ovs-pcap \
1433-@HAVE_PYTHON_TRUE@ utilities/ovs-tcpundump \
1434-@HAVE_PYTHON_TRUE@ utilities/ovs-test \
1435-@HAVE_PYTHON_TRUE@ utilities/ovs-vlan-test
1436-
1437-@HAVE_NETLINK_TRUE@am__append_13 = utilities/ovs-vlan-bug-workaround
1438-@HAVE_NETLINK_TRUE@am__append_14 = utilities/nlmon
1439-@HAVE_PYTHON_TRUE@am__append_15 = utilities/bugtool/ovs-bugtool
1440-@HAVE_PYTHON_TRUE@am__append_16 = utilities/bugtool/ovs-bugtool
1441-@HAVE_PYTHON_TRUE@am__append_17 = utilities/bugtool/ovs-bugtool.8
1442-@HAVE_PYTHON_TRUE@am__append_18 = utilities/bugtool/ovs-bugtool.8
1443-@HAVE_PYTHON_TRUE@am__append_19 = $(bugtool_scripts)
1444-@HAVE_PYTHON_TRUE@am__append_20 = bugtool-install-data-local
1445-@HAVE_PYTHON_TRUE@am__append_21 = bugtool-uninstall-local
1446-@HAVE_OPENSSL_TRUE@am__append_22 = $(TESTPKI_FILES)
1447-@HAVE_OPENSSL_TRUE@am__append_23 = $(TESTPKI_FILES) tests/ovs-pki.log
1448-@HAVE_OPENSSL_TRUE@am__append_24 = clean-pki
1449-@HAVE_PYTHON_TRUE@am__append_25 = include/openflow/openflow.h.stamp \
1450-@HAVE_PYTHON_TRUE@ include/openflow/nicira-ext.h.stamp
1451-@HAVE_PYTHON_TRUE@am__append_26 = include/openflow/openflow.h.stamp \
1452-@HAVE_PYTHON_TRUE@ include/openflow/nicira-ext.h.stamp
1453-@HAVE_NETLINK_TRUE@am__append_27 = vswitchd/ovs-brcompatd
1454-@BUILD_OVSDBMONITOR_TRUE@am__append_28 = ovsdb/ovsdbmonitor/ovsdbmonitor
1455-@BUILD_OVSDBMONITOR_TRUE@am__append_29 = \
1456-@BUILD_OVSDBMONITOR_TRUE@ ovsdb/ovsdbmonitor/ovsdbmonitor \
1457-@BUILD_OVSDBMONITOR_TRUE@ ovsdb/ovsdbmonitor/ovsdbmonitor.tmp
1458-
1459-@BUILD_OVSDBMONITOR_TRUE@am__append_30 = ovsdb/ovsdbmonitor/ovsdbmonitor.1
1460-subdir = .
1461-ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
1462-am__aclocal_m4_deps = $(top_srcdir)/m4/nx-build.m4 \
1463- $(top_srcdir)/m4/openvswitch.m4 $(top_srcdir)/acinclude.m4 \
1464- $(top_srcdir)/configure.ac
1465-am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
1466- $(ACLOCAL_M4)
1467-am__CONFIG_DISTCLEAN_FILES = config.status config.cache config.log \
1468- configure.lineno config.status.lineno
1469-mkinstalldirs = $(install_sh) -d
1470-CONFIG_HEADER = config.h
1471-CONFIG_CLEAN_FILES = datapath/linux/Kbuild datapath/linux/Makefile \
1472- datapath/linux/Makefile.main tests/atlocal
1473-CONFIG_CLEAN_VPATH_FILES =
1474-LIBRARIES = $(noinst_LIBRARIES)
1475-AR = ar
1476-ARFLAGS = cru
1477-lib_libopenvswitch_a_AR = $(AR) $(ARFLAGS)
1478-lib_libopenvswitch_a_LIBADD =
1479-am__lib_libopenvswitch_a_SOURCES_DIST = lib/aes128.c lib/aes128.h \
1480- lib/autopath.c lib/autopath.h lib/backtrace.c lib/backtrace.h \
1481- lib/bitmap.c lib/bitmap.h lib/bond.c lib/bond.h lib/bundle.c \
1482- lib/bundle.h lib/byte-order.h lib/byteq.c lib/byteq.h \
1483- lib/cfm.c lib/cfm.h lib/classifier.c lib/classifier.h \
1484- lib/command-line.c lib/command-line.h lib/compiler.h \
1485- lib/coverage.c lib/coverage.h lib/csum.c lib/csum.h \
1486- lib/daemon.c lib/daemon.h lib/dhcp.h lib/dummy.c lib/dummy.h \
1487- lib/dhparams.h lib/dirs.h lib/dpif-netdev.c \
1488- lib/dpif-provider.h lib/dpif.c lib/dpif.h lib/dynamic-string.c \
1489- lib/dynamic-string.h lib/entropy.c lib/entropy.h \
1490- lib/fatal-signal.c lib/fatal-signal.h lib/flow.c lib/flow.h \
1491- lib/hash.c lib/hash.h lib/hmap.c lib/hmap.h lib/hmapx.c \
1492- lib/hmapx.h lib/json.c lib/json.h lib/jsonrpc.c lib/jsonrpc.h \
1493- lib/lacp.c lib/lacp.h lib/leak-checker.c lib/leak-checker.h \
1494- lib/learn.c lib/learn.h lib/learning-switch.c \
1495- lib/learning-switch.h lib/list.c lib/list.h lib/lockfile.c \
1496- lib/lockfile.h lib/mac-learning.c lib/mac-learning.h \
1497- lib/meta-flow.c lib/meta-flow.h lib/multipath.c \
1498- lib/multipath.h lib/netdev-dummy.c lib/netdev-provider.h \
1499- lib/netdev.c lib/netdev.h lib/netlink.c lib/netlink.h \
1500- lib/nx-match.c lib/nx-match.h lib/odp-util.c lib/odp-util.h \
1501- lib/ofp-errors.c lib/ofp-errors.h lib/ofp-parse.c \
1502- lib/ofp-parse.h lib/ofp-print.c lib/ofp-print.h lib/ofp-util.c \
1503- lib/ofp-util.def lib/ofp-util.h lib/ofpbuf.c lib/ofpbuf.h \
1504- lib/ovsdb-data.c lib/ovsdb-data.h lib/ovsdb-error.c \
1505- lib/ovsdb-error.h lib/ovsdb-idl-provider.h lib/ovsdb-idl.c \
1506- lib/ovsdb-idl.h lib/ovsdb-parser.c lib/ovsdb-parser.h \
1507- lib/ovsdb-types.c lib/ovsdb-types.h lib/packets.c \
1508- lib/packets.h lib/pcap.c lib/pcap.h lib/poll-loop.c \
1509- lib/poll-loop.h lib/process.c lib/process.h lib/random.c \
1510- lib/random.h lib/rconn.c lib/rconn.h lib/reconnect.c \
1511- lib/reconnect.h lib/sat-math.h lib/sha1.c lib/sha1.h \
1512- lib/shash.c lib/shash.h lib/signals.c lib/signals.h \
1513- lib/socket-util.c lib/socket-util.h lib/sort.c lib/sort.h \
1514- lib/sset.c lib/sset.h lib/stp.c lib/stp.h lib/stream-fd.c \
1515- lib/stream-fd.h lib/stream-provider.h lib/stream-ssl.h \
1516- lib/stream-tcp.c lib/stream-unix.c lib/stream.c lib/stream.h \
1517- lib/stress.c lib/stress.h lib/string.c lib/string.h lib/svec.c \
1518- lib/svec.h lib/table.c lib/table.h lib/tag.c lib/tag.h \
1519- lib/timer.c lib/timer.h lib/timeval.c lib/timeval.h \
1520- lib/type-props.h lib/unaligned.h lib/unicode.c lib/unicode.h \
1521- lib/unixctl.c lib/unixctl.h lib/util.c lib/util.h lib/uuid.c \
1522- lib/uuid.h lib/valgrind.h lib/vconn-provider.h \
1523- lib/vconn-stream.c lib/vconn.c lib/vconn.h lib/vlan-bitmap.c \
1524- lib/vlan-bitmap.h lib/vlandev.c lib/vlandev.h lib/vlog.c \
1525- lib/vlog.h lib/dpif-linux.c lib/dpif-linux.h \
1526- lib/netdev-linux.c lib/netdev-linux.h lib/netdev-vport.c \
1527- lib/netdev-vport.h lib/netlink-notifier.c \
1528- lib/netlink-notifier.h lib/netlink-protocol.h \
1529- lib/netlink-socket.c lib/netlink-socket.h lib/rtnetlink-link.c \
1530- lib/rtnetlink-link.h lib/route-table.c lib/route-table.h \
1531- lib/stream-ssl.c lib/stream-nossl.c
1532-am__dirstamp = $(am__leading_dot)dirstamp
1533-@HAVE_NETLINK_TRUE@am__objects_1 = lib/dpif-linux.$(OBJEXT) \
1534-@HAVE_NETLINK_TRUE@ lib/netdev-linux.$(OBJEXT) \
1535-@HAVE_NETLINK_TRUE@ lib/netdev-vport.$(OBJEXT) \
1536-@HAVE_NETLINK_TRUE@ lib/netlink-notifier.$(OBJEXT) \
1537-@HAVE_NETLINK_TRUE@ lib/netlink-socket.$(OBJEXT) \
1538-@HAVE_NETLINK_TRUE@ lib/rtnetlink-link.$(OBJEXT) \
1539-@HAVE_NETLINK_TRUE@ lib/route-table.$(OBJEXT)
1540-@HAVE_OPENSSL_TRUE@am__objects_2 = lib/stream-ssl.$(OBJEXT)
1541-@HAVE_OPENSSL_FALSE@am__objects_3 = lib/stream-nossl.$(OBJEXT)
1542-am_lib_libopenvswitch_a_OBJECTS = lib/aes128.$(OBJEXT) \
1543- lib/autopath.$(OBJEXT) lib/backtrace.$(OBJEXT) \
1544- lib/bitmap.$(OBJEXT) lib/bond.$(OBJEXT) lib/bundle.$(OBJEXT) \
1545- lib/byteq.$(OBJEXT) lib/cfm.$(OBJEXT) lib/classifier.$(OBJEXT) \
1546- lib/command-line.$(OBJEXT) lib/coverage.$(OBJEXT) \
1547- lib/csum.$(OBJEXT) lib/daemon.$(OBJEXT) lib/dummy.$(OBJEXT) \
1548- lib/dpif-netdev.$(OBJEXT) lib/dpif.$(OBJEXT) \
1549- lib/dynamic-string.$(OBJEXT) lib/entropy.$(OBJEXT) \
1550- lib/fatal-signal.$(OBJEXT) lib/flow.$(OBJEXT) \
1551- lib/hash.$(OBJEXT) lib/hmap.$(OBJEXT) lib/hmapx.$(OBJEXT) \
1552- lib/json.$(OBJEXT) lib/jsonrpc.$(OBJEXT) lib/lacp.$(OBJEXT) \
1553- lib/leak-checker.$(OBJEXT) lib/learn.$(OBJEXT) \
1554- lib/learning-switch.$(OBJEXT) lib/list.$(OBJEXT) \
1555- lib/lockfile.$(OBJEXT) lib/mac-learning.$(OBJEXT) \
1556- lib/meta-flow.$(OBJEXT) lib/multipath.$(OBJEXT) \
1557- lib/netdev-dummy.$(OBJEXT) lib/netdev.$(OBJEXT) \
1558- lib/netlink.$(OBJEXT) lib/nx-match.$(OBJEXT) \
1559- lib/odp-util.$(OBJEXT) lib/ofp-errors.$(OBJEXT) \
1560- lib/ofp-parse.$(OBJEXT) lib/ofp-print.$(OBJEXT) \
1561- lib/ofp-util.$(OBJEXT) lib/ofpbuf.$(OBJEXT) \
1562- lib/ovsdb-data.$(OBJEXT) lib/ovsdb-error.$(OBJEXT) \
1563- lib/ovsdb-idl.$(OBJEXT) lib/ovsdb-parser.$(OBJEXT) \
1564- lib/ovsdb-types.$(OBJEXT) lib/packets.$(OBJEXT) \
1565- lib/pcap.$(OBJEXT) lib/poll-loop.$(OBJEXT) \
1566- lib/process.$(OBJEXT) lib/random.$(OBJEXT) lib/rconn.$(OBJEXT) \
1567- lib/reconnect.$(OBJEXT) lib/sha1.$(OBJEXT) lib/shash.$(OBJEXT) \
1568- lib/signals.$(OBJEXT) lib/socket-util.$(OBJEXT) \
1569- lib/sort.$(OBJEXT) lib/sset.$(OBJEXT) lib/stp.$(OBJEXT) \
1570- lib/stream-fd.$(OBJEXT) lib/stream-tcp.$(OBJEXT) \
1571- lib/stream-unix.$(OBJEXT) lib/stream.$(OBJEXT) \
1572- lib/stress.$(OBJEXT) lib/string.$(OBJEXT) lib/svec.$(OBJEXT) \
1573- lib/table.$(OBJEXT) lib/tag.$(OBJEXT) lib/timer.$(OBJEXT) \
1574- lib/timeval.$(OBJEXT) lib/unicode.$(OBJEXT) \
1575- lib/unixctl.$(OBJEXT) lib/util.$(OBJEXT) lib/uuid.$(OBJEXT) \
1576- lib/vconn-stream.$(OBJEXT) lib/vconn.$(OBJEXT) \
1577- lib/vlan-bitmap.$(OBJEXT) lib/vlandev.$(OBJEXT) \
1578- lib/vlog.$(OBJEXT) $(am__objects_1) $(am__objects_2) \
1579- $(am__objects_3)
1580-@HAVE_OPENSSL_TRUE@am__objects_4 = lib/dhparams.$(OBJEXT)
1581-nodist_lib_libopenvswitch_a_OBJECTS = lib/dirs.$(OBJEXT) \
1582- $(am__objects_4)
1583-lib_libopenvswitch_a_OBJECTS = $(am_lib_libopenvswitch_a_OBJECTS) \
1584- $(nodist_lib_libopenvswitch_a_OBJECTS)
1585-lib_libsflow_a_AR = $(AR) $(ARFLAGS)
1586-lib_libsflow_a_LIBADD =
1587-am_lib_libsflow_a_OBJECTS = lib/lib_libsflow_a-sflow_agent.$(OBJEXT) \
1588- lib/lib_libsflow_a-sflow_sampler.$(OBJEXT) \
1589- lib/lib_libsflow_a-sflow_poller.$(OBJEXT) \
1590- lib/lib_libsflow_a-sflow_receiver.$(OBJEXT)
1591-lib_libsflow_a_OBJECTS = $(am_lib_libsflow_a_OBJECTS)
1592-ofproto_libofproto_a_AR = $(AR) $(ARFLAGS)
1593-ofproto_libofproto_a_LIBADD =
1594-am_ofproto_libofproto_a_OBJECTS = ofproto/collectors.$(OBJEXT) \
1595- ofproto/connmgr.$(OBJEXT) ofproto/fail-open.$(OBJEXT) \
1596- ofproto/in-band.$(OBJEXT) ofproto/names.$(OBJEXT) \
1597- ofproto/netflow.$(OBJEXT) ofproto/ofproto.$(OBJEXT) \
1598- ofproto/ofproto-dpif.$(OBJEXT) \
1599- ofproto/ofproto-dpif-sflow.$(OBJEXT) ofproto/pktbuf.$(OBJEXT) \
1600- ofproto/pinsched.$(OBJEXT)
1601-ofproto_libofproto_a_OBJECTS = $(am_ofproto_libofproto_a_OBJECTS)
1602-ovsdb_libovsdb_a_AR = $(AR) $(ARFLAGS)
1603-ovsdb_libovsdb_a_LIBADD =
1604-am_ovsdb_libovsdb_a_OBJECTS = ovsdb/column.$(OBJEXT) \
1605- ovsdb/condition.$(OBJEXT) ovsdb/execution.$(OBJEXT) \
1606- ovsdb/file.$(OBJEXT) ovsdb/jsonrpc-server.$(OBJEXT) \
1607- ovsdb/log.$(OBJEXT) ovsdb/mutation.$(OBJEXT) \
1608- ovsdb/ovsdb-server.$(OBJEXT) ovsdb/ovsdb.$(OBJEXT) \
1609- ovsdb/query.$(OBJEXT) ovsdb/row.$(OBJEXT) \
1610- ovsdb/server.$(OBJEXT) ovsdb/table.$(OBJEXT) \
1611- ovsdb/trigger.$(OBJEXT) ovsdb/transaction.$(OBJEXT)
1612-ovsdb_libovsdb_a_OBJECTS = $(am_ovsdb_libovsdb_a_OBJECTS)
1613-am__installdirs = "$(DESTDIR)$(bindir)" "$(DESTDIR)$(sbindir)" \
1614- "$(DESTDIR)$(bindir)" "$(DESTDIR)$(pkgdatadir)" \
1615- "$(DESTDIR)$(sbindir)" "$(DESTDIR)$(scriptsdir)" \
1616- "$(DESTDIR)$(sbindir)" "$(DESTDIR)$(scriptsdir)" \
1617- "$(DESTDIR)$(man1dir)" "$(DESTDIR)$(man5dir)" \
1618- "$(DESTDIR)$(man8dir)" "$(DESTDIR)$(pkgdatadir)" \
1619- "$(DESTDIR)$(scriptsdir)" "$(DESTDIR)$(pkgdatadir)" \
1620- "$(DESTDIR)$(ovsdbmonitordir)" "$(DESTDIR)$(pkgdatadir)" \
1621- "$(DESTDIR)$(scriptsdir)"
1622-@HAVE_NETLINK_TRUE@am__EXEEXT_1 = utilities/nlmon$(EXEEXT)
1623-@HAVE_NETLINK_TRUE@am__EXEEXT_2 = \
1624-@HAVE_NETLINK_TRUE@ utilities/ovs-vlan-bug-workaround$(EXEEXT)
1625-@HAVE_NETLINK_TRUE@am__EXEEXT_3 = vswitchd/ovs-brcompatd$(EXEEXT)
1626-PROGRAMS = $(bin_PROGRAMS) $(noinst_PROGRAMS) $(sbin_PROGRAMS)
1627-am_ovsdb_ovsdb_client_OBJECTS = ovsdb/ovsdb-client.$(OBJEXT)
1628-ovsdb_ovsdb_client_OBJECTS = $(am_ovsdb_ovsdb_client_OBJECTS)
1629-am__DEPENDENCIES_1 =
1630-ovsdb_ovsdb_client_DEPENDENCIES = ovsdb/libovsdb.a \
1631- lib/libopenvswitch.a $(am__DEPENDENCIES_1)
1632-am_ovsdb_ovsdb_server_OBJECTS = ovsdb/ovsdb-server.$(OBJEXT)
1633-ovsdb_ovsdb_server_OBJECTS = $(am_ovsdb_ovsdb_server_OBJECTS)
1634-ovsdb_ovsdb_server_DEPENDENCIES = ovsdb/libovsdb.a \
1635- lib/libopenvswitch.a $(am__DEPENDENCIES_1)
1636-am_ovsdb_ovsdb_tool_OBJECTS = ovsdb/ovsdb-tool.$(OBJEXT)
1637-ovsdb_ovsdb_tool_OBJECTS = $(am_ovsdb_ovsdb_tool_OBJECTS)
1638-ovsdb_ovsdb_tool_DEPENDENCIES = ovsdb/libovsdb.a lib/libopenvswitch.a
1639-am_tests_test_aes128_OBJECTS = tests/test-aes128.$(OBJEXT)
1640-tests_test_aes128_OBJECTS = $(am_tests_test_aes128_OBJECTS)
1641-tests_test_aes128_DEPENDENCIES = lib/libopenvswitch.a
1642-am_tests_test_bundle_OBJECTS = tests/test-bundle.$(OBJEXT)
1643-tests_test_bundle_OBJECTS = $(am_tests_test_bundle_OBJECTS)
1644-tests_test_bundle_DEPENDENCIES = lib/libopenvswitch.a
1645-am_tests_test_byte_order_OBJECTS = tests/test-byte-order.$(OBJEXT)
1646-tests_test_byte_order_OBJECTS = $(am_tests_test_byte_order_OBJECTS)
1647-tests_test_byte_order_DEPENDENCIES = lib/libopenvswitch.a
1648-am_tests_test_classifier_OBJECTS = tests/test-classifier.$(OBJEXT)
1649-tests_test_classifier_OBJECTS = $(am_tests_test_classifier_OBJECTS)
1650-tests_test_classifier_DEPENDENCIES = lib/libopenvswitch.a
1651-am_tests_test_csum_OBJECTS = tests/test-csum.$(OBJEXT)
1652-tests_test_csum_OBJECTS = $(am_tests_test_csum_OBJECTS)
1653-tests_test_csum_DEPENDENCIES = lib/libopenvswitch.a
1654-am_tests_test_file_name_OBJECTS = tests/test-file_name.$(OBJEXT)
1655-tests_test_file_name_OBJECTS = $(am_tests_test_file_name_OBJECTS)
1656-tests_test_file_name_DEPENDENCIES = lib/libopenvswitch.a
1657-am_tests_test_flows_OBJECTS = tests/test-flows.$(OBJEXT)
1658-tests_test_flows_OBJECTS = $(am_tests_test_flows_OBJECTS)
1659-tests_test_flows_DEPENDENCIES = lib/libopenvswitch.a
1660-am_tests_test_hash_OBJECTS = tests/test-hash.$(OBJEXT)
1661-tests_test_hash_OBJECTS = $(am_tests_test_hash_OBJECTS)
1662-tests_test_hash_DEPENDENCIES = lib/libopenvswitch.a
1663-am_tests_test_hmap_OBJECTS = tests/test-hmap.$(OBJEXT)
1664-tests_test_hmap_OBJECTS = $(am_tests_test_hmap_OBJECTS)
1665-tests_test_hmap_DEPENDENCIES = lib/libopenvswitch.a
1666-am_tests_test_json_OBJECTS = tests/test-json.$(OBJEXT)
1667-tests_test_json_OBJECTS = $(am_tests_test_json_OBJECTS)
1668-tests_test_json_DEPENDENCIES = lib/libopenvswitch.a
1669-am_tests_test_jsonrpc_OBJECTS = tests/test-jsonrpc.$(OBJEXT)
1670-tests_test_jsonrpc_OBJECTS = $(am_tests_test_jsonrpc_OBJECTS)
1671-tests_test_jsonrpc_DEPENDENCIES = lib/libopenvswitch.a \
1672- $(am__DEPENDENCIES_1)
1673-am_tests_test_list_OBJECTS = tests/test-list.$(OBJEXT)
1674-tests_test_list_OBJECTS = $(am_tests_test_list_OBJECTS)
1675-tests_test_list_DEPENDENCIES = lib/libopenvswitch.a
1676-am_tests_test_lockfile_OBJECTS = tests/test-lockfile.$(OBJEXT)
1677-tests_test_lockfile_OBJECTS = $(am_tests_test_lockfile_OBJECTS)
1678-tests_test_lockfile_DEPENDENCIES = lib/libopenvswitch.a
1679-am_tests_test_multipath_OBJECTS = tests/test-multipath.$(OBJEXT)
1680-tests_test_multipath_OBJECTS = $(am_tests_test_multipath_OBJECTS)
1681-tests_test_multipath_DEPENDENCIES = lib/libopenvswitch.a
1682-am_tests_test_odp_OBJECTS = tests/test-odp.$(OBJEXT)
1683-tests_test_odp_OBJECTS = $(am_tests_test_odp_OBJECTS)
1684-tests_test_odp_DEPENDENCIES = lib/libopenvswitch.a
1685-am_tests_test_ovsdb_OBJECTS = tests/test-ovsdb.$(OBJEXT) \
1686- tests/idltest.$(OBJEXT)
1687-tests_test_ovsdb_OBJECTS = $(am_tests_test_ovsdb_OBJECTS)
1688-tests_test_ovsdb_DEPENDENCIES = ovsdb/libovsdb.a lib/libopenvswitch.a \
1689- $(am__DEPENDENCIES_1)
1690-am_tests_test_packets_OBJECTS = tests/test-packets.$(OBJEXT)
1691-tests_test_packets_OBJECTS = $(am_tests_test_packets_OBJECTS)
1692-tests_test_packets_DEPENDENCIES = lib/libopenvswitch.a
1693-am_tests_test_random_OBJECTS = tests/test-random.$(OBJEXT)
1694-tests_test_random_OBJECTS = $(am_tests_test_random_OBJECTS)
1695-tests_test_random_DEPENDENCIES = lib/libopenvswitch.a
1696-am_tests_test_reconnect_OBJECTS = tests/test-reconnect.$(OBJEXT)
1697-tests_test_reconnect_OBJECTS = $(am_tests_test_reconnect_OBJECTS)
1698-tests_test_reconnect_DEPENDENCIES = lib/libopenvswitch.a
1699-am_tests_test_sha1_OBJECTS = tests/test-sha1.$(OBJEXT)
1700-tests_test_sha1_OBJECTS = $(am_tests_test_sha1_OBJECTS)
1701-tests_test_sha1_DEPENDENCIES = lib/libopenvswitch.a
1702-am_tests_test_stp_OBJECTS = tests/test-stp.$(OBJEXT)
1703-tests_test_stp_OBJECTS = $(am_tests_test_stp_OBJECTS)
1704-tests_test_stp_DEPENDENCIES = lib/libopenvswitch.a
1705-am_tests_test_strtok_r_OBJECTS = tests/test-strtok_r.$(OBJEXT)
1706-tests_test_strtok_r_OBJECTS = $(am_tests_test_strtok_r_OBJECTS)
1707-tests_test_strtok_r_LDADD = $(LDADD)
1708-am_tests_test_timeval_OBJECTS = tests/test-timeval.$(OBJEXT)
1709-tests_test_timeval_OBJECTS = $(am_tests_test_timeval_OBJECTS)
1710-tests_test_timeval_DEPENDENCIES = lib/libopenvswitch.a
1711-am_tests_test_type_props_OBJECTS = tests/test-type-props.$(OBJEXT)
1712-tests_test_type_props_OBJECTS = $(am_tests_test_type_props_OBJECTS)
1713-tests_test_type_props_LDADD = $(LDADD)
1714-am_tests_test_unix_socket_OBJECTS = tests/test-unix-socket.$(OBJEXT)
1715-tests_test_unix_socket_OBJECTS = $(am_tests_test_unix_socket_OBJECTS)
1716-tests_test_unix_socket_DEPENDENCIES = lib/libopenvswitch.a
1717-am_tests_test_util_OBJECTS = tests/test-util.$(OBJEXT)
1718-tests_test_util_OBJECTS = $(am_tests_test_util_OBJECTS)
1719-tests_test_util_DEPENDENCIES = lib/libopenvswitch.a
1720-am_tests_test_uuid_OBJECTS = tests/test-uuid.$(OBJEXT)
1721-tests_test_uuid_OBJECTS = $(am_tests_test_uuid_OBJECTS)
1722-tests_test_uuid_DEPENDENCIES = lib/libopenvswitch.a
1723-am_tests_test_vconn_OBJECTS = tests/test-vconn.$(OBJEXT)
1724-tests_test_vconn_OBJECTS = $(am_tests_test_vconn_OBJECTS)
1725-tests_test_vconn_DEPENDENCIES = lib/libopenvswitch.a \
1726- $(am__DEPENDENCIES_1)
1727-am__utilities_nlmon_SOURCES_DIST = utilities/nlmon.c
1728-@HAVE_NETLINK_TRUE@am_utilities_nlmon_OBJECTS = \
1729-@HAVE_NETLINK_TRUE@ utilities/nlmon.$(OBJEXT)
1730-utilities_nlmon_OBJECTS = $(am_utilities_nlmon_OBJECTS)
1731-@HAVE_NETLINK_TRUE@utilities_nlmon_DEPENDENCIES = \
1732-@HAVE_NETLINK_TRUE@ lib/libopenvswitch.a
1733-am_utilities_ovs_appctl_OBJECTS = utilities/ovs-appctl.$(OBJEXT)
1734-utilities_ovs_appctl_OBJECTS = $(am_utilities_ovs_appctl_OBJECTS)
1735-utilities_ovs_appctl_DEPENDENCIES = lib/libopenvswitch.a
1736-am_utilities_ovs_benchmark_OBJECTS = \
1737- utilities/ovs-benchmark.$(OBJEXT)
1738-utilities_ovs_benchmark_OBJECTS = \
1739- $(am_utilities_ovs_benchmark_OBJECTS)
1740-utilities_ovs_benchmark_DEPENDENCIES = lib/libopenvswitch.a
1741-am_utilities_ovs_controller_OBJECTS = \
1742- utilities/ovs-controller.$(OBJEXT)
1743-utilities_ovs_controller_OBJECTS = \
1744- $(am_utilities_ovs_controller_OBJECTS)
1745-utilities_ovs_controller_DEPENDENCIES = lib/libopenvswitch.a \
1746- $(am__DEPENDENCIES_1)
1747-am_utilities_ovs_dpctl_OBJECTS = utilities/ovs-dpctl.$(OBJEXT)
1748-utilities_ovs_dpctl_OBJECTS = $(am_utilities_ovs_dpctl_OBJECTS)
1749-utilities_ovs_dpctl_DEPENDENCIES = lib/libopenvswitch.a
1750-am_utilities_ovs_ofctl_OBJECTS = utilities/ovs-ofctl.$(OBJEXT)
1751-utilities_ovs_ofctl_OBJECTS = $(am_utilities_ovs_ofctl_OBJECTS)
1752-utilities_ovs_ofctl_DEPENDENCIES = ofproto/libofproto.a \
1753- lib/libopenvswitch.a $(am__DEPENDENCIES_1)
1754-am__utilities_ovs_vlan_bug_workaround_SOURCES_DIST = \
1755- utilities/ovs-vlan-bug-workaround.c
1756-@HAVE_NETLINK_TRUE@am_utilities_ovs_vlan_bug_workaround_OBJECTS = utilities/ovs-vlan-bug-workaround.$(OBJEXT)
1757-utilities_ovs_vlan_bug_workaround_OBJECTS = \
1758- $(am_utilities_ovs_vlan_bug_workaround_OBJECTS)
1759-@HAVE_NETLINK_TRUE@utilities_ovs_vlan_bug_workaround_DEPENDENCIES = \
1760-@HAVE_NETLINK_TRUE@ lib/libopenvswitch.a
1761-am_utilities_ovs_vsctl_OBJECTS = utilities/ovs-vsctl.$(OBJEXT) \
1762- vswitchd/vswitch-idl.$(OBJEXT)
1763-utilities_ovs_vsctl_OBJECTS = $(am_utilities_ovs_vsctl_OBJECTS)
1764-utilities_ovs_vsctl_DEPENDENCIES = lib/libopenvswitch.a \
1765- $(am__DEPENDENCIES_1)
1766-am__vswitchd_ovs_brcompatd_SOURCES_DIST = vswitchd/ovs-brcompatd.c \
1767- vswitchd/vswitch-idl.c vswitchd/vswitch-idl.h
1768-@HAVE_NETLINK_TRUE@am_vswitchd_ovs_brcompatd_OBJECTS = \
1769-@HAVE_NETLINK_TRUE@ vswitchd/ovs-brcompatd.$(OBJEXT) \
1770-@HAVE_NETLINK_TRUE@ vswitchd/vswitch-idl.$(OBJEXT)
1771-vswitchd_ovs_brcompatd_OBJECTS = $(am_vswitchd_ovs_brcompatd_OBJECTS)
1772-@HAVE_NETLINK_TRUE@vswitchd_ovs_brcompatd_DEPENDENCIES = \
1773-@HAVE_NETLINK_TRUE@ lib/libopenvswitch.a $(am__DEPENDENCIES_1)
1774-am_vswitchd_ovs_vswitchd_OBJECTS = vswitchd/bridge.$(OBJEXT) \
1775- vswitchd/ovs-vswitchd.$(OBJEXT) \
1776- vswitchd/system-stats.$(OBJEXT) vswitchd/vswitch-idl.$(OBJEXT) \
1777- vswitchd/xenserver.$(OBJEXT)
1778-vswitchd_ovs_vswitchd_OBJECTS = $(am_vswitchd_ovs_vswitchd_OBJECTS)
1779-vswitchd_ovs_vswitchd_DEPENDENCIES = ofproto/libofproto.a \
1780- lib/libsflow.a lib/libopenvswitch.a $(am__DEPENDENCIES_1)
1781-am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`;
1782-am__vpath_adj = case $$p in \
1783- $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \
1784- *) f=$$p;; \
1785- esac;
1786-am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`;
1787-am__install_max = 40
1788-am__nobase_strip_setup = \
1789- srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'`
1790-am__nobase_strip = \
1791- for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||"
1792-am__nobase_list = $(am__nobase_strip_setup); \
1793- for p in $$list; do echo "$$p $$p"; done | \
1794- sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \
1795- $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \
1796- if (++n[$$2] == $(am__install_max)) \
1797- { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \
1798- END { for (dir in files) print dir, files[dir] }'
1799-am__base_list = \
1800- sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \
1801- sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g'
1802-SCRIPTS = $(bin_SCRIPTS) $(dist_pkgdata_SCRIPTS) $(dist_sbin_SCRIPTS) \
1803- $(dist_scripts_SCRIPTS) $(noinst_SCRIPTS) $(sbin_SCRIPTS) \
1804- $(scripts_SCRIPTS)
1805-DEFAULT_INCLUDES = -I.@am__isrc@
1806-depcomp = $(SHELL) $(top_srcdir)/build-aux/depcomp
1807-am__depfiles_maybe = depfiles
1808-am__mv = mv -f
1809-COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \
1810- $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
1811-CCLD = $(CC)
1812-LINK = $(CCLD) $(AM_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) $(LDFLAGS) -o $@
1813-SOURCES = $(lib_libopenvswitch_a_SOURCES) \
1814- $(nodist_lib_libopenvswitch_a_SOURCES) \
1815- $(lib_libsflow_a_SOURCES) $(ofproto_libofproto_a_SOURCES) \
1816- $(ovsdb_libovsdb_a_SOURCES) $(ovsdb_ovsdb_client_SOURCES) \
1817- $(ovsdb_ovsdb_server_SOURCES) $(ovsdb_ovsdb_tool_SOURCES) \
1818- $(tests_test_aes128_SOURCES) $(tests_test_bundle_SOURCES) \
1819- $(tests_test_byte_order_SOURCES) \
1820- $(tests_test_classifier_SOURCES) $(tests_test_csum_SOURCES) \
1821- $(tests_test_file_name_SOURCES) $(tests_test_flows_SOURCES) \
1822- $(tests_test_hash_SOURCES) $(tests_test_hmap_SOURCES) \
1823- $(tests_test_json_SOURCES) $(tests_test_jsonrpc_SOURCES) \
1824- $(tests_test_list_SOURCES) $(tests_test_lockfile_SOURCES) \
1825- $(tests_test_multipath_SOURCES) $(tests_test_odp_SOURCES) \
1826- $(tests_test_ovsdb_SOURCES) $(tests_test_packets_SOURCES) \
1827- $(tests_test_random_SOURCES) $(tests_test_reconnect_SOURCES) \
1828- $(tests_test_sha1_SOURCES) $(tests_test_stp_SOURCES) \
1829- $(tests_test_strtok_r_SOURCES) $(tests_test_timeval_SOURCES) \
1830- $(tests_test_type_props_SOURCES) \
1831- $(tests_test_unix_socket_SOURCES) $(tests_test_util_SOURCES) \
1832- $(tests_test_uuid_SOURCES) $(tests_test_vconn_SOURCES) \
1833- $(utilities_nlmon_SOURCES) $(utilities_ovs_appctl_SOURCES) \
1834- $(utilities_ovs_benchmark_SOURCES) \
1835- $(utilities_ovs_controller_SOURCES) \
1836- $(utilities_ovs_dpctl_SOURCES) $(utilities_ovs_ofctl_SOURCES) \
1837- $(utilities_ovs_vlan_bug_workaround_SOURCES) \
1838- $(utilities_ovs_vsctl_SOURCES) \
1839- $(vswitchd_ovs_brcompatd_SOURCES) \
1840- $(vswitchd_ovs_vswitchd_SOURCES)
1841-DIST_SOURCES = $(am__lib_libopenvswitch_a_SOURCES_DIST) \
1842- $(lib_libsflow_a_SOURCES) $(ofproto_libofproto_a_SOURCES) \
1843- $(ovsdb_libovsdb_a_SOURCES) $(ovsdb_ovsdb_client_SOURCES) \
1844- $(ovsdb_ovsdb_server_SOURCES) $(ovsdb_ovsdb_tool_SOURCES) \
1845- $(tests_test_aes128_SOURCES) $(tests_test_bundle_SOURCES) \
1846- $(tests_test_byte_order_SOURCES) \
1847- $(tests_test_classifier_SOURCES) $(tests_test_csum_SOURCES) \
1848- $(tests_test_file_name_SOURCES) $(tests_test_flows_SOURCES) \
1849- $(tests_test_hash_SOURCES) $(tests_test_hmap_SOURCES) \
1850- $(tests_test_json_SOURCES) $(tests_test_jsonrpc_SOURCES) \
1851- $(tests_test_list_SOURCES) $(tests_test_lockfile_SOURCES) \
1852- $(tests_test_multipath_SOURCES) $(tests_test_odp_SOURCES) \
1853- $(tests_test_ovsdb_SOURCES) $(tests_test_packets_SOURCES) \
1854- $(tests_test_random_SOURCES) $(tests_test_reconnect_SOURCES) \
1855- $(tests_test_sha1_SOURCES) $(tests_test_stp_SOURCES) \
1856- $(tests_test_strtok_r_SOURCES) $(tests_test_timeval_SOURCES) \
1857- $(tests_test_type_props_SOURCES) \
1858- $(tests_test_unix_socket_SOURCES) $(tests_test_util_SOURCES) \
1859- $(tests_test_uuid_SOURCES) $(tests_test_vconn_SOURCES) \
1860- $(am__utilities_nlmon_SOURCES_DIST) \
1861- $(utilities_ovs_appctl_SOURCES) \
1862- $(utilities_ovs_benchmark_SOURCES) \
1863- $(utilities_ovs_controller_SOURCES) \
1864- $(utilities_ovs_dpctl_SOURCES) $(utilities_ovs_ofctl_SOURCES) \
1865- $(am__utilities_ovs_vlan_bug_workaround_SOURCES_DIST) \
1866- $(utilities_ovs_vsctl_SOURCES) \
1867- $(am__vswitchd_ovs_brcompatd_SOURCES_DIST) \
1868- $(vswitchd_ovs_vswitchd_SOURCES)
1869-RECURSIVE_TARGETS = all-recursive check-recursive dvi-recursive \
1870- html-recursive info-recursive install-data-recursive \
1871- install-dvi-recursive install-exec-recursive \
1872- install-html-recursive install-info-recursive \
1873- install-pdf-recursive install-ps-recursive install-recursive \
1874- installcheck-recursive installdirs-recursive pdf-recursive \
1875- ps-recursive uninstall-recursive
1876-man1dir = $(mandir)/man1
1877-man5dir = $(mandir)/man5
1878-man8dir = $(mandir)/man8
1879-NROFF = nroff
1880-MANS = $(dist_man_MANS) $(man_MANS)
1881-DATA = $(dist_pkgdata_DATA) $(dist_scripts_DATA) \
1882- $(nobase_pkgdata_DATA) $(noinst_DATA) $(ovsdbmonitor_DATA) \
1883- $(pkgdata_DATA) $(scripts_DATA)
1884-am__noinst_HEADERS_DIST = CodingStyle DESIGN INSTALL.KVM INSTALL.Linux \
1885- INSTALL.RHEL INSTALL.SSL INSTALL.XenServer INSTALL.bridge \
1886- INSTALL.userspace NOTICE PORTING README-gcov REPORTING-BUGS \
1887- SubmittingPatches WHY-OVS boot.sh build-aux/sodepends.pl \
1888- build-aux/soexpand.pl lib/common.man lib/common-syn.man \
1889- lib/daemon.man lib/daemon-syn.man lib/leak-checker.man \
1890- lib/ovs.tmac lib/ssl-bootstrap.man lib/ssl-bootstrap-syn.man \
1891- lib/ssl-peer-ca-cert.man lib/ssl.man lib/ssl-syn.man \
1892- lib/stress-unixctl.man lib/table.man lib/unixctl.man \
1893- lib/unixctl-syn.man lib/vconn-active.man lib/vconn-passive.man \
1894- lib/vlog-unixctl.man lib/vlog-syn.man lib/vlog.man \
1895- ofproto/ofproto-unixctl.man utilities/ovs-vlan-bugs.man \
1896- ovsdb/remote-active.man ovsdb/remote-passive.man \
1897- utilities/ovs-appctl.8.in utilities/ovs-benchmark.1.in \
1898- utilities/ovs-controller.8.in utilities/ovs-ctl.8 \
1899- utilities/ovs-dpctl.8.in utilities/ovs-ofctl.8.in \
1900- utilities/ovs-parse-leaks.8 utilities/ovs-pcap.1.in \
1901- utilities/ovs-pki.8.in utilities/ovs-tcpundump.1.in \
1902- utilities/ovs-vlan-bug-workaround.8.in utilities/ovs-test.8.in \
1903- utilities/ovs-vlan-test.8.in utilities/ovs-vsctl.8.in \
1904- utilities/bugtool/ovs-bugtool.8 vswitchd/ovs-vswitchd.8.in \
1905- vswitchd/ovs-brcompatd.8.in ovsdb/ovsdb-tool.1.in \
1906- ovsdb/ovsdb-client.1.in ovsdb/ovsdb-server.1.in \
1907- ovsdb/ovsdb-idlc.1 ovsdb/ovsdbmonitor/ovsdbmonitor.1 \
1908- lib/dh1024.pem lib/dh2048.pem lib/dh4096.pem lib/dirs.c.in \
1909- build-aux/extract-ofp-errors utilities/ovs-ctl.in \
1910- utilities/ovs-lib.in utilities/ovs-parse-leaks.in \
1911- utilities/ovs-pcap.in utilities/ovs-pki-cgi.in \
1912- utilities/ovs-pki.in utilities/ovs-save \
1913- utilities/ovs-tcpundump.in utilities/ovs-test.in \
1914- utilities/ovs-vlan-test.in \
1915- utilities/bugtool/plugins/kernel-info/openvswitch.xml \
1916- utilities/bugtool/plugins/network-status/openvswitch.xml \
1917- utilities/bugtool/plugins/system-configuration.xml \
1918- utilities/bugtool/plugins/system-logs/openvswitch.xml \
1919- utilities/bugtool/plugins/system-configuration/openvswitch.xml \
1920- utilities/bugtool/ovs-bugtool-cfm-show \
1921- utilities/bugtool/ovs-bugtool-lacp-show \
1922- utilities/bugtool/ovs-bugtool-tc-class-show \
1923- utilities/bugtool/ovs-bugtool-ovsdb-dump \
1924- utilities/bugtool/ovs-bugtool.in tests/testsuite.at \
1925- tests/ovsdb-macros.at tests/library.at tests/bundle.at \
1926- tests/classifier.at tests/check-structs.at tests/daemon.at \
1927- tests/daemon-py.at tests/ofp-print.at tests/ovs-ofctl.at \
1928- tests/odp.at tests/multipath.at tests/autopath.at \
1929- tests/lacp.at tests/learn.at tests/vconn.at tests/file_name.at \
1930- tests/aes128.at tests/uuid.at tests/json.at tests/jsonrpc.at \
1931- tests/jsonrpc-py.at tests/timeval.at tests/lockfile.at \
1932- tests/reconnect.at tests/ofproto-dpif.at \
1933- tests/ofproto-macros.at tests/ofproto.at tests/ovsdb.at \
1934- tests/ovsdb-log.at tests/ovsdb-types.at tests/ovsdb-data.at \
1935- tests/ovsdb-column.at tests/ovsdb-table.at tests/ovsdb-row.at \
1936- tests/ovsdb-schema.at tests/ovsdb-condition.at \
1937- tests/ovsdb-mutation.at tests/ovsdb-query.at \
1938- tests/ovsdb-transaction.at tests/ovsdb-execution.at \
1939- tests/ovsdb-trigger.at tests/ovsdb-tool.at \
1940- tests/ovsdb-server.at tests/ovsdb-monitor.at \
1941- tests/ovsdb-idl.at tests/ovs-vsctl.at \
1942- tests/ovs-monitor-ipsec.at tests/ovs-xapi-sync.at tests/stp.at \
1943- tests/interface-reconfigure.at tests/vlog.at \
1944- $(srcdir)/tests/testsuite tests/atlocal.in \
1945- $(srcdir)/package.m4 tests/lcov-wrapper.in \
1946- tests/valgrind-wrapper.in tests/openssl.supp tests/uuidfilt.pl \
1947- tests/ovsdb-monitor-sort.pl tests/idltest.ovsschema \
1948- tests/idltest.ann tests/test-daemon.py tests/test-json.py \
1949- tests/test-jsonrpc.py tests/test-ovsdb.py \
1950- tests/test-reconnect.py tests/MockXenAPI.py tests/test-vlog.py \
1951- build-aux/check-structs third-party/README \
1952- third-party/ofp-tcpdump.patch debian/changelog debian/compat \
1953- debian/control debian/control.modules.in debian/copyright \
1954- debian/copyright.in debian/dkms.conf.in debian/dirs \
1955- debian/openvswitch-brcompat.install \
1956- debian/openvswitch-brcompat.manpages \
1957- debian/openvswitch-brcompat.postinst \
1958- debian/openvswitch-brcompat.postrm \
1959- debian/openvswitch-common.dirs \
1960- debian/openvswitch-common.install \
1961- debian/openvswitch-common.manpages \
1962- debian/openvswitch-controller.README.Debian \
1963- debian/openvswitch-controller.default \
1964- debian/openvswitch-controller.dirs \
1965- debian/openvswitch-controller.init \
1966- debian/openvswitch-controller.install \
1967- debian/openvswitch-controller.manpages \
1968- debian/openvswitch-controller.postinst \
1969- debian/openvswitch-datapath-module-_KVERS_.postinst.modules.in \
1970- debian/openvswitch-datapath-dkms.postinst \
1971- debian/openvswitch-datapath-dkms.prerm \
1972- debian/openvswitch-datapath-source.README.Debian \
1973- debian/openvswitch-datapath-source.copyright \
1974- debian/openvswitch-datapath-source.dirs \
1975- debian/openvswitch-datapath-source.install \
1976- debian/openvswitch-ipsec.dirs debian/openvswitch-ipsec.init \
1977- debian/openvswitch-ipsec.install debian/openvswitch-pki.dirs \
1978- debian/openvswitch-pki.postinst debian/openvswitch-pki.postrm \
1979- debian/openvswitch-switch.README.Debian \
1980- debian/openvswitch-switch.dirs debian/openvswitch-switch.init \
1981- debian/openvswitch-switch.install \
1982- debian/openvswitch-switch.logrotate \
1983- debian/openvswitch-switch.manpages \
1984- debian/openvswitch-switch.postinst \
1985- debian/openvswitch-switch.postrm \
1986- debian/openvswitch-switch.template \
1987- debian/openvswitch-test.dirs debian/openvswitch-test.install \
1988- debian/openvswitch-test.manpages debian/ovsdbmonitor.install \
1989- debian/ovsdbmonitor.manpages debian/ovs-monitor-ipsec \
1990- debian/python-openvswitch.dirs \
1991- debian/python-openvswitch.install debian/rules \
1992- debian/rules.modules debian/source/format vswitchd/INTERNALS \
1993- vswitchd/vswitch.ovsschema vswitchd/vswitch-idl.ann \
1994- vswitchd/vswitch.gv vswitchd/vswitch.pic vswitchd/vswitch.xml \
1995- ovsdb/SPECS ovsdb/ovsdb-idlc.in tests/idltest.c \
1996- tests/idltest.h tests/idltest.ovsidl vswitchd/vswitch-idl.c \
1997- vswitchd/vswitch-idl.h vswitchd/vswitch-idl.ovsidl \
1998- ovsdb/ovsdb-doc.in ovsdb/ovsdb-dot.in ovsdb/dot2pic \
1999- ovsdb/ovsdbmonitor/OVEApp.py \
2000- ovsdb/ovsdbmonitor/OVECommonWindow.py \
2001- ovsdb/ovsdbmonitor/OVEConfig.py \
2002- ovsdb/ovsdbmonitor/OVEConfigWindow.py \
2003- ovsdb/ovsdbmonitor/OVEFetch.py \
2004- ovsdb/ovsdbmonitor/OVEFlowWindow.py \
2005- ovsdb/ovsdbmonitor/OVEHostWindow.py \
2006- ovsdb/ovsdbmonitor/OVELogWindow.py \
2007- ovsdb/ovsdbmonitor/OVELogger.py \
2008- ovsdb/ovsdbmonitor/OVEMainWindow.py \
2009- ovsdb/ovsdbmonitor/OVEStandard.py \
2010- ovsdb/ovsdbmonitor/OVEUtil.py \
2011- ovsdb/ovsdbmonitor/Ui_ConfigWindow.py \
2012- ovsdb/ovsdbmonitor/Ui_FlowWindow.py \
2013- ovsdb/ovsdbmonitor/Ui_HostWindow.py \
2014- ovsdb/ovsdbmonitor/Ui_LogWindow.py \
2015- ovsdb/ovsdbmonitor/Ui_MainWindow.py \
2016- ovsdb/ovsdbmonitor/qt4reactor.py ovsdb/ovsdbmonitor/COPYING \
2017- ovsdb/ovsdbmonitor/ConfigWindow.ui \
2018- ovsdb/ovsdbmonitor/FlowWindow.ui \
2019- ovsdb/ovsdbmonitor/HostWindow.ui \
2020- ovsdb/ovsdbmonitor/LogWindow.ui \
2021- ovsdb/ovsdbmonitor/MainWindow.ui \
2022- ovsdb/ovsdbmonitor/ovsdbmonitor.in rhel/README.RHEL \
2023- rhel/automake.mk rhel/etc_init.d_openvswitch \
2024- rhel/etc_logrotate.d_openvswitch \
2025- rhel/etc_sysconfig_network-scripts_ifdown-ovs \
2026- rhel/etc_sysconfig_network-scripts_ifup-ovs \
2027- rhel/kmodtool-openvswitch-el5.sh \
2028- rhel/openvswitch-kmod-rhel5.spec \
2029- rhel/openvswitch-kmod-rhel5.spec.in \
2030- rhel/openvswitch-kmod-rhel6.spec \
2031- rhel/openvswitch-kmod-rhel6.spec.in rhel/openvswitch.spec \
2032- rhel/openvswitch.spec.in \
2033- rhel/usr_share_openvswitch_scripts_sysconfig.template \
2034- xenserver/GPLv2 xenserver/LICENSE xenserver/README \
2035- xenserver/automake.mk xenserver/etc_init.d_openvswitch \
2036- xenserver/etc_init.d_openvswitch-xapi-update \
2037- xenserver/etc_logrotate.d_openvswitch \
2038- xenserver/etc_profile.d_openvswitch.sh \
2039- xenserver/etc_xapi.d_plugins_openvswitch-cfg-update \
2040- xenserver/etc_xensource_scripts_vif \
2041- xenserver/openvswitch-xen.spec \
2042- xenserver/opt_xensource_libexec_InterfaceReconfigure.py \
2043- xenserver/opt_xensource_libexec_InterfaceReconfigureBridge.py \
2044- xenserver/opt_xensource_libexec_InterfaceReconfigureVswitch.py \
2045- xenserver/opt_xensource_libexec_interface-reconfigure \
2046- xenserver/usr_lib_xsconsole_plugins-base_XSFeatureVSwitch.py \
2047- xenserver/usr_share_openvswitch_scripts_ovs-xapi-sync \
2048- xenserver/usr_share_openvswitch_scripts_sysconfig.template \
2049- python/ovs/__init__.py python/ovs/daemon.py \
2050- python/ovs/db/__init__.py python/ovs/db/data.py \
2051- python/ovs/db/error.py python/ovs/db/idl.py \
2052- python/ovs/db/parser.py python/ovs/db/schema.py \
2053- python/ovs/db/types.py python/ovs/fatal_signal.py \
2054- python/ovs/json.py python/ovs/jsonrpc.py python/ovs/ovsuuid.py \
2055- python/ovs/poller.py python/ovs/process.py \
2056- python/ovs/reconnect.py python/ovs/socket_util.py \
2057- python/ovs/stream.py python/ovs/timeval.py python/ovs/vlog.py \
2058- python/ovs/util.py python/ovs/dirs.py \
2059- python/ovstest/__init__.py python/ovstest/args.py \
2060- python/ovstest/rpcserver.py python/ovstest/tcp.py \
2061- python/ovstest/udp.py python/ovstest/util.py \
2062- python/compat/uuid.py python/compat/argparse.py \
2063- include/linux/openvswitch.h include/linux/types.h \
2064- include/openflow/nicira-ext.h include/openflow/openflow.h \
2065- include/openvswitch/brcompat-netlink.h \
2066- include/openvswitch/datapath-compat.h \
2067- include/openvswitch/tunnel.h include/openvswitch/types.h \
2068- include/sparse/arpa/inet.h include/sparse/assert.h \
2069- include/sparse/math.h include/sparse/netinet/in.h \
2070- include/sparse/netinet/ip6.h include/sparse/sys/socket.h \
2071- include/sparse/sys/wait.h
2072-HEADERS = $(noinst_HEADERS)
2073-RECURSIVE_CLEAN_TARGETS = mostlyclean-recursive clean-recursive \
2074- distclean-recursive maintainer-clean-recursive
2075-AM_RECURSIVE_TARGETS = $(RECURSIVE_TARGETS:-recursive=) \
2076- $(RECURSIVE_CLEAN_TARGETS:-recursive=) tags TAGS ctags CTAGS \
2077- distdir dist dist-all distcheck
2078-ETAGS = etags
2079-CTAGS = ctags
2080-DIST_SUBDIRS = $(SUBDIRS)
2081-DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
2082-distdir = $(PACKAGE)-$(VERSION)
2083-top_distdir = $(distdir)
2084-am__remove_distdir = \
2085- { test ! -d "$(distdir)" \
2086- || { find "$(distdir)" -type d ! -perm -200 -exec chmod u+w {} ';' \
2087- && rm -fr "$(distdir)"; }; }
2088-am__relativize = \
2089- dir0=`pwd`; \
2090- sed_first='s,^\([^/]*\)/.*$$,\1,'; \
2091- sed_rest='s,^[^/]*/*,,'; \
2092- sed_last='s,^.*/\([^/]*\)$$,\1,'; \
2093- sed_butlast='s,/*[^/]*$$,,'; \
2094- while test -n "$$dir1"; do \
2095- first=`echo "$$dir1" | sed -e "$$sed_first"`; \
2096- if test "$$first" != "."; then \
2097- if test "$$first" = ".."; then \
2098- dir2=`echo "$$dir0" | sed -e "$$sed_last"`/"$$dir2"; \
2099- dir0=`echo "$$dir0" | sed -e "$$sed_butlast"`; \
2100- else \
2101- first2=`echo "$$dir2" | sed -e "$$sed_first"`; \
2102- if test "$$first2" = "$$first"; then \
2103- dir2=`echo "$$dir2" | sed -e "$$sed_rest"`; \
2104- else \
2105- dir2="../$$dir2"; \
2106- fi; \
2107- dir0="$$dir0"/"$$first"; \
2108- fi; \
2109- fi; \
2110- dir1=`echo "$$dir1" | sed -e "$$sed_rest"`; \
2111- done; \
2112- reldir="$$dir2"
2113-DIST_ARCHIVES = $(distdir).tar.gz
2114-GZIP_ENV = --best
2115-distuninstallcheck_listfiles = find . -type f -print
2116-distcleancheck_listfiles = find . -type f -print
2117-ACLOCAL = @ACLOCAL@
2118-AMTAR = @AMTAR@
2119-AUTOCONF = @AUTOCONF@
2120-AUTOHEADER = @AUTOHEADER@
2121-AUTOMAKE = @AUTOMAKE@
2122-AWK = @AWK@
2123-BUILDNR = @BUILDNR@
2124-CC = @CC@
2125-CCDEPMODE = @CCDEPMODE@
2126-CFLAGS = @CFLAGS@
2127-CGCCFLAGS = @CGCCFLAGS@
2128-CPP = @CPP@
2129-CPPFLAGS = @CPPFLAGS@
2130-CYGPATH_W = @CYGPATH_W@
2131-DEFS = @DEFS@
2132-DEPDIR = @DEPDIR@
2133-ECHO_C = @ECHO_C@
2134-ECHO_N = @ECHO_N@
2135-ECHO_T = @ECHO_T@
2136-EGREP = @EGREP@
2137-EXEEXT = @EXEEXT@
2138-FGREP = @FGREP@
2139-GREP = @GREP@
2140-HAVE_OPENSSL = @HAVE_OPENSSL@
2141-HAVE_PYTHON = @HAVE_PYTHON@
2142-INSTALL = @INSTALL@
2143-INSTALL_DATA = @INSTALL_DATA@
2144-INSTALL_PROGRAM = @INSTALL_PROGRAM@
2145-INSTALL_SCRIPT = @INSTALL_SCRIPT@
2146-INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@
2147-KARCH = @KARCH@
2148-KBUILD = @KBUILD@
2149-LDFLAGS = @LDFLAGS@
2150-LIBOBJS = @LIBOBJS@
2151-LIBS = @LIBS@
2152-LOGDIR = @LOGDIR@
2153-LTLIBOBJS = @LTLIBOBJS@
2154-MAKEINFO = @MAKEINFO@
2155-MKDIR_P = @MKDIR_P@
2156-OBJEXT = @OBJEXT@
2157-PACKAGE = @PACKAGE@
2158-PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@
2159-PACKAGE_NAME = @PACKAGE_NAME@
2160-PACKAGE_STRING = @PACKAGE_STRING@
2161-PACKAGE_TARNAME = @PACKAGE_TARNAME@
2162-PACKAGE_URL = @PACKAGE_URL@
2163-PACKAGE_VERSION = @PACKAGE_VERSION@
2164-PATH_SEPARATOR = @PATH_SEPARATOR@
2165-PERL = @PERL@
2166-PKG_CONFIG = @PKG_CONFIG@
2167-PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@
2168-PKG_CONFIG_PATH = @PKG_CONFIG_PATH@
2169-PKIDIR = @PKIDIR@
2170-PYTHON = @PYTHON@
2171-PYUIC4 = @PYUIC4@
2172-RANLIB = @RANLIB@
2173-RUNDIR = @RUNDIR@
2174-SET_MAKE = @SET_MAKE@
2175-SHELL = @SHELL@
2176-SPARSE = @SPARSE@
2177-SPARSEFLAGS = @SPARSEFLAGS@
2178-SSL_CFLAGS = @SSL_CFLAGS@
2179-SSL_LIBS = @SSL_LIBS@
2180-STRIP = @STRIP@
2181-VERSION = @VERSION@
2182-WARNING_FLAGS = @WARNING_FLAGS@
2183-abs_builddir = @abs_builddir@
2184-abs_srcdir = @abs_srcdir@
2185-abs_top_builddir = @abs_top_builddir@
2186-abs_top_srcdir = @abs_top_srcdir@
2187-ac_ct_CC = @ac_ct_CC@
2188-am__include = @am__include@
2189-am__leading_dot = @am__leading_dot@
2190-am__quote = @am__quote@
2191-am__tar = @am__tar@
2192-am__untar = @am__untar@
2193-bindir = @bindir@
2194-build_alias = @build_alias@
2195-builddir = @builddir@
2196-datadir = @datadir@
2197-datarootdir = @datarootdir@
2198-docdir = @docdir@
2199-dvidir = @dvidir@
2200-exec_prefix = @exec_prefix@
2201-host_alias = @host_alias@
2202-htmldir = @htmldir@
2203-includedir = @includedir@
2204-infodir = @infodir@
2205-install_sh = @install_sh@
2206-libdir = @libdir@
2207-libexecdir = @libexecdir@
2208-localedir = @localedir@
2209-localstatedir = @localstatedir@
2210-mandir = @mandir@
2211-mkdir_p = @mkdir_p@
2212-oldincludedir = @oldincludedir@
2213-pdfdir = @pdfdir@
2214-prefix = @prefix@
2215-program_transform_name = @program_transform_name@
2216-psdir = @psdir@
2217-sbindir = @sbindir@
2218-sharedstatedir = @sharedstatedir@
2219-srcdir = @srcdir@
2220-sysconfdir = @sysconfdir@
2221-target_alias = @target_alias@
2222-top_build_prefix = @top_build_prefix@
2223-top_builddir = @top_builddir@
2224-top_srcdir = @top_srcdir@
2225-AUTOMAKE_OPTIONS = foreign subdir-objects
2226-ACLOCAL_AMFLAGS = -I m4
2227-SUBDIRS = datapath
2228-AM_CPPFLAGS = $(SSL_CFLAGS) -I $(top_srcdir)/include -I \
2229- $(top_srcdir)/lib -I $(top_builddir)/lib $(am__append_1)
2230-AM_CFLAGS = -Wstrict-prototypes $(WARNING_FLAGS) $(am__append_2)
2231-@NDEBUG_FALSE@AM_LDFLAGS = -export-dynamic
2232-
2233-# If we're checked out from a Git repository, make sure that every
2234-# file that is in Git is distributed.
2235-
2236-# Check that "struct vlog_ratelimit" is always declared "static".
2237-
2238-# Version checking for vswitch.ovsschema.
2239-ALL_LOCAL = dist-hook-git rate-limit-check $(am__append_3) \
2240- $(am__append_25) check-debian-changelog-version \
2241- vswitchd/vswitch.ovsschema.stamp
2242-BUILT_SOURCES = $(OVSIDL_BUILT)
2243-CLEANFILES = all-distfiles all-gitfiles missing-distfiles distfiles \
2244- $(am__append_4) manpage-dep-check \
2245- $(nodist_lib_libopenvswitch_a_SOURCES) $(am__append_11) \
2246- $(am__append_16) $(lcov_wrappers) $(valgrind_wrappers) \
2247- $(am__append_23) vswitchd/vswitch.ovsschema.stamp
2248-CLEAN_LOCAL = $(am__append_24)
2249-DISTCLEANFILES = utilities/ovs-appctl.8 utilities/ovs-ctl \
2250- utilities/ovs-benchmark.1 utilities/ovs-controller.8 \
2251- utilities/ovs-dpctl.8 utilities/ovs-lib utilities/ovs-ofctl.8 \
2252- utilities/ovs-parse-leaks utilities/ovs-pcap \
2253- utilities/ovs-pcap.1 utilities/ovs-pki utilities/ovs-pki-cgi \
2254- utilities/ovs-pki.8 utilities/ovs-tcpundump \
2255- utilities/ovs-tcpundump.1 utilities/ovs-test \
2256- utilities/ovs-test.8 utilities/ovs-vlan-test \
2257- utilities/ovs-vlan-test.8 utilities/ovs-vlan-bug-workaround.8 \
2258- utilities/ovs-vsctl.8 tests/atconfig tests/atlocal \
2259- $(am__append_26) debian/copyright vswitchd/ovs-vswitchd.8 \
2260- vswitchd/ovs-brcompatd.8 ovsdb/ovsdb-tool.1 \
2261- ovsdb/ovsdb-client.1 ovsdb/ovsdb-server.1 ovsdb/ovsdb-idlc \
2262- ovsdb/ovsdb-doc ovsdb/ovsdb-dot $(am__append_29)
2263-
2264-# Python tests.
2265-
2266-# vswitch schema documentation
2267-
2268-# ovsdb-idlc
2269-
2270-# ovsdb-doc
2271-
2272-# ovsdb-dot
2273-EXTRA_DIST = CodingStyle DESIGN INSTALL.KVM INSTALL.Linux INSTALL.RHEL \
2274- INSTALL.SSL INSTALL.XenServer INSTALL.bridge INSTALL.userspace \
2275- NOTICE PORTING README-gcov REPORTING-BUGS SubmittingPatches \
2276- WHY-OVS boot.sh build-aux/sodepends.pl build-aux/soexpand.pl \
2277- $(MAN_FRAGMENTS) $(MAN_ROOTS) lib/dh1024.pem lib/dh2048.pem \
2278- lib/dh4096.pem lib/dirs.c.in build-aux/extract-ofp-errors \
2279- utilities/ovs-ctl.in utilities/ovs-lib.in \
2280- utilities/ovs-parse-leaks.in utilities/ovs-pcap.in \
2281- utilities/ovs-pki-cgi.in utilities/ovs-pki.in \
2282- utilities/ovs-save utilities/ovs-tcpundump.in \
2283- utilities/ovs-test.in utilities/ovs-vlan-test.in \
2284- $(bugtool_plugins) $(bugtool_scripts) \
2285- utilities/bugtool/ovs-bugtool.8 \
2286- utilities/bugtool/ovs-bugtool.in $(TESTSUITE_AT) $(TESTSUITE) \
2287- tests/atlocal.in $(srcdir)/package.m4 \
2288- $(srcdir)/tests/testsuite tests/lcov-wrapper.in \
2289- tests/valgrind-wrapper.in tests/openssl.supp tests/uuidfilt.pl \
2290- tests/ovsdb-monitor-sort.pl $(IDLTEST_IDL_FILES) \
2291- tests/test-daemon.py tests/test-json.py tests/test-jsonrpc.py \
2292- tests/test-ovsdb.py tests/test-reconnect.py \
2293- tests/MockXenAPI.py tests/test-vlog.py build-aux/check-structs \
2294- third-party/README third-party/ofp-tcpdump.patch \
2295- debian/changelog debian/compat debian/control \
2296- debian/control.modules.in debian/copyright debian/copyright.in \
2297- debian/dkms.conf.in debian/dirs \
2298- debian/openvswitch-brcompat.install \
2299- debian/openvswitch-brcompat.manpages \
2300- debian/openvswitch-brcompat.postinst \
2301- debian/openvswitch-brcompat.postrm \
2302- debian/openvswitch-common.dirs \
2303- debian/openvswitch-common.install \
2304- debian/openvswitch-common.manpages \
2305- debian/openvswitch-controller.README.Debian \
2306- debian/openvswitch-controller.default \
2307- debian/openvswitch-controller.dirs \
2308- debian/openvswitch-controller.init \
2309- debian/openvswitch-controller.install \
2310- debian/openvswitch-controller.manpages \
2311- debian/openvswitch-controller.postinst \
2312- debian/openvswitch-datapath-module-_KVERS_.postinst.modules.in \
2313- debian/openvswitch-datapath-dkms.postinst \
2314- debian/openvswitch-datapath-dkms.prerm \
2315- debian/openvswitch-datapath-source.README.Debian \
2316- debian/openvswitch-datapath-source.copyright \
2317- debian/openvswitch-datapath-source.dirs \
2318- debian/openvswitch-datapath-source.install \
2319- debian/openvswitch-ipsec.dirs debian/openvswitch-ipsec.init \
2320- debian/openvswitch-ipsec.install debian/openvswitch-pki.dirs \
2321- debian/openvswitch-pki.postinst debian/openvswitch-pki.postrm \
2322- debian/openvswitch-switch.README.Debian \
2323- debian/openvswitch-switch.dirs debian/openvswitch-switch.init \
2324- debian/openvswitch-switch.install \
2325- debian/openvswitch-switch.logrotate \
2326- debian/openvswitch-switch.manpages \
2327- debian/openvswitch-switch.postinst \
2328- debian/openvswitch-switch.postrm \
2329- debian/openvswitch-switch.template \
2330- debian/openvswitch-test.dirs debian/openvswitch-test.install \
2331- debian/openvswitch-test.manpages debian/ovsdbmonitor.install \
2332- debian/ovsdbmonitor.manpages debian/ovs-monitor-ipsec \
2333- debian/python-openvswitch.dirs \
2334- debian/python-openvswitch.install debian/rules \
2335- debian/rules.modules debian/source/format vswitchd/INTERNALS \
2336- $(VSWITCH_IDL_FILES) vswitchd/vswitch.gv vswitchd/vswitch.pic \
2337- vswitchd/vswitch.xml ovsdb/SPECS ovsdb/ovsdb-idlc.in \
2338- $(OVSIDL_BUILT) ovsdb/ovsdb-doc.in ovsdb/ovsdb-dot.in \
2339- ovsdb/dot2pic $(ovsdbmonitor_pyfiles) \
2340- ovsdb/ovsdbmonitor/COPYING ovsdb/ovsdbmonitor/ConfigWindow.ui \
2341- ovsdb/ovsdbmonitor/FlowWindow.ui \
2342- ovsdb/ovsdbmonitor/HostWindow.ui \
2343- ovsdb/ovsdbmonitor/LogWindow.ui \
2344- ovsdb/ovsdbmonitor/MainWindow.ui \
2345- ovsdb/ovsdbmonitor/ovsdbmonitor.in rhel/README.RHEL \
2346- rhel/automake.mk rhel/etc_init.d_openvswitch \
2347- rhel/etc_logrotate.d_openvswitch \
2348- rhel/etc_sysconfig_network-scripts_ifdown-ovs \
2349- rhel/etc_sysconfig_network-scripts_ifup-ovs \
2350- rhel/kmodtool-openvswitch-el5.sh \
2351- rhel/openvswitch-kmod-rhel5.spec \
2352- rhel/openvswitch-kmod-rhel5.spec.in \
2353- rhel/openvswitch-kmod-rhel6.spec \
2354- rhel/openvswitch-kmod-rhel6.spec.in rhel/openvswitch.spec \
2355- rhel/openvswitch.spec.in \
2356- rhel/usr_share_openvswitch_scripts_sysconfig.template \
2357- xenserver/GPLv2 xenserver/LICENSE xenserver/README \
2358- xenserver/automake.mk xenserver/etc_init.d_openvswitch \
2359- xenserver/etc_init.d_openvswitch-xapi-update \
2360- xenserver/etc_logrotate.d_openvswitch \
2361- xenserver/etc_profile.d_openvswitch.sh \
2362- xenserver/etc_xapi.d_plugins_openvswitch-cfg-update \
2363- xenserver/etc_xensource_scripts_vif \
2364- xenserver/openvswitch-xen.spec \
2365- xenserver/opt_xensource_libexec_InterfaceReconfigure.py \
2366- xenserver/opt_xensource_libexec_InterfaceReconfigureBridge.py \
2367- xenserver/opt_xensource_libexec_InterfaceReconfigureVswitch.py \
2368- xenserver/opt_xensource_libexec_interface-reconfigure \
2369- xenserver/usr_lib_xsconsole_plugins-base_XSFeatureVSwitch.py \
2370- xenserver/usr_share_openvswitch_scripts_ovs-xapi-sync \
2371- xenserver/usr_share_openvswitch_scripts_sysconfig.template \
2372- $(ovs_pyfiles) python/ovs/dirs.py $(ovstest_pyfiles) \
2373- python/compat/uuid.py python/compat/argparse.py
2374-bin_SCRIPTS = utilities/ovs-pki utilities/ovs-vsctl \
2375- utilities/ovs-parse-leaks $(am__append_12)
2376-DIST_HOOKS = check-debian-changelog-version
2377-dist_man_MANS = utilities/ovs-ctl.8 vswitchd/ovs-vswitchd.conf.db.5
2378-dist_pkgdata_DATA =
2379-dist_pkgdata_SCRIPTS =
2380-dist_sbin_SCRIPTS =
2381-dist_scripts_SCRIPTS =
2382-dist_scripts_DATA =
2383-INSTALL_DATA_LOCAL = lib-install-data-local $(am__append_20)
2384-UNINSTALL_LOCAL = $(am__append_21) ovsdbmonitor-uninstall-local \
2385- ovs-uninstall-local
2386-# ovsdb-tool.1
2387-# ovsdb-client.1
2388-# ovsdb-server.1
2389-man_MANS = utilities/ovs-appctl.8 utilities/ovs-benchmark.1 \
2390- utilities/ovs-controller.8 utilities/ovs-dpctl.8 \
2391- utilities/ovs-ofctl.8 utilities/ovs-parse-leaks.8 \
2392- utilities/ovs-pcap.1 utilities/ovs-pki.8 \
2393- utilities/ovs-tcpundump.1 utilities/ovs-vlan-bug-workaround.8 \
2394- utilities/ovs-test.8 utilities/ovs-vlan-test.8 \
2395- utilities/ovs-vsctl.8 $(am__append_17) vswitchd/ovs-vswitchd.8 \
2396- vswitchd/ovs-brcompatd.8 ovsdb/ovsdb-tool.1 \
2397- ovsdb/ovsdb-client.1 ovsdb/ovsdb-server.1 $(am__append_30)
2398-MAN_FRAGMENTS = lib/common.man lib/common-syn.man lib/daemon.man \
2399- lib/daemon-syn.man lib/leak-checker.man lib/ovs.tmac \
2400- lib/ssl-bootstrap.man lib/ssl-bootstrap-syn.man \
2401- lib/ssl-peer-ca-cert.man lib/ssl.man lib/ssl-syn.man \
2402- lib/stress-unixctl.man lib/table.man lib/unixctl.man \
2403- lib/unixctl-syn.man lib/vconn-active.man lib/vconn-passive.man \
2404- lib/vlog-unixctl.man lib/vlog-syn.man lib/vlog.man \
2405- ofproto/ofproto-unixctl.man utilities/ovs-vlan-bugs.man \
2406- ovsdb/remote-active.man ovsdb/remote-passive.man
2407-MAN_ROOTS = utilities/ovs-appctl.8.in utilities/ovs-benchmark.1.in \
2408- utilities/ovs-controller.8.in utilities/ovs-ctl.8 \
2409- utilities/ovs-dpctl.8.in utilities/ovs-ofctl.8.in \
2410- utilities/ovs-parse-leaks.8 utilities/ovs-pcap.1.in \
2411- utilities/ovs-pki.8.in utilities/ovs-tcpundump.1.in \
2412- utilities/ovs-vlan-bug-workaround.8.in utilities/ovs-test.8.in \
2413- utilities/ovs-vlan-test.8.in utilities/ovs-vsctl.8.in \
2414- $(am__append_18) vswitchd/ovs-vswitchd.8.in \
2415- vswitchd/ovs-brcompatd.8.in ovsdb/ovsdb-tool.1.in \
2416- ovsdb/ovsdb-client.1.in ovsdb/ovsdb-server.1.in \
2417- ovsdb/ovsdb-idlc.1 ovsdb/ovsdbmonitor/ovsdbmonitor.1
2418-noinst_DATA =
2419-
2420-# This ensures that files added to EXTRA_DIST are always distributed,
2421-# even if they are inside an Automake if...endif conditional block that is
2422-# disabled by some particular "configure" run. For more information, see:
2423-# http://article.gmane.org/gmane.comp.sysutils.automake.general/10891
2424-noinst_HEADERS = $(EXTRA_DIST) include/linux/openvswitch.h \
2425- include/linux/types.h include/openflow/nicira-ext.h \
2426- include/openflow/openflow.h \
2427- include/openvswitch/brcompat-netlink.h \
2428- include/openvswitch/datapath-compat.h \
2429- include/openvswitch/tunnel.h include/openvswitch/types.h \
2430- include/sparse/arpa/inet.h include/sparse/assert.h \
2431- include/sparse/math.h include/sparse/netinet/in.h \
2432- include/sparse/netinet/ip6.h include/sparse/sys/socket.h \
2433- include/sparse/sys/wait.h
2434-
2435-# libovsdb
2436-noinst_LIBRARIES = lib/libopenvswitch.a lib/libsflow.a \
2437- ofproto/libofproto.a ovsdb/libovsdb.a
2438-noinst_man_MANS =
2439-noinst_SCRIPTS = utilities/ovs-pki-cgi ovsdb/ovsdb-idlc \
2440- ovsdb/ovsdb-doc ovsdb/ovsdb-dot $(am__append_28)
2441-
2442-# idltest schema and IDL
2443-
2444-# vswitch schema and IDL
2445-OVSIDL_BUILT = tests/idltest.c tests/idltest.h tests/idltest.ovsidl \
2446- vswitchd/vswitch-idl.c vswitchd/vswitch-idl.h \
2447- vswitchd/vswitch-idl.ovsidl
2448-pkgdata_DATA = vswitchd/vswitch.ovsschema
2449-sbin_SCRIPTS = $(am__append_15)
2450-scripts_SCRIPTS = utilities/ovs-ctl utilities/ovs-save \
2451- $(am__append_19)
2452-scripts_DATA = utilities/ovs-lib
2453-SUFFIXES = .in .ovsidl .ovsschema .ui .py
2454-check_DATA = $(am__append_22)
2455-scriptsdir = $(pkgdatadir)/scripts
2456-ro_c = echo '/* -*- mode: c; buffer-read-only: t -*- */'
2457-ro_shell = printf '\043 Generated automatically -- do not modify! -*- buffer-read-only: t -*-\n'
2458-lib_libopenvswitch_a_SOURCES = lib/aes128.c lib/aes128.h \
2459- lib/autopath.c lib/autopath.h lib/backtrace.c lib/backtrace.h \
2460- lib/bitmap.c lib/bitmap.h lib/bond.c lib/bond.h lib/bundle.c \
2461- lib/bundle.h lib/byte-order.h lib/byteq.c lib/byteq.h \
2462- lib/cfm.c lib/cfm.h lib/classifier.c lib/classifier.h \
2463- lib/command-line.c lib/command-line.h lib/compiler.h \
2464- lib/coverage.c lib/coverage.h lib/csum.c lib/csum.h \
2465- lib/daemon.c lib/daemon.h lib/dhcp.h lib/dummy.c lib/dummy.h \
2466- lib/dhparams.h lib/dirs.h lib/dpif-netdev.c \
2467- lib/dpif-provider.h lib/dpif.c lib/dpif.h lib/dynamic-string.c \
2468- lib/dynamic-string.h lib/entropy.c lib/entropy.h \
2469- lib/fatal-signal.c lib/fatal-signal.h lib/flow.c lib/flow.h \
2470- lib/hash.c lib/hash.h lib/hmap.c lib/hmap.h lib/hmapx.c \
2471- lib/hmapx.h lib/json.c lib/json.h lib/jsonrpc.c lib/jsonrpc.h \
2472- lib/lacp.c lib/lacp.h lib/leak-checker.c lib/leak-checker.h \
2473- lib/learn.c lib/learn.h lib/learning-switch.c \
2474- lib/learning-switch.h lib/list.c lib/list.h lib/lockfile.c \
2475- lib/lockfile.h lib/mac-learning.c lib/mac-learning.h \
2476- lib/meta-flow.c lib/meta-flow.h lib/multipath.c \
2477- lib/multipath.h lib/netdev-dummy.c lib/netdev-provider.h \
2478- lib/netdev.c lib/netdev.h lib/netlink.c lib/netlink.h \
2479- lib/nx-match.c lib/nx-match.h lib/odp-util.c lib/odp-util.h \
2480- lib/ofp-errors.c lib/ofp-errors.h lib/ofp-parse.c \
2481- lib/ofp-parse.h lib/ofp-print.c lib/ofp-print.h lib/ofp-util.c \
2482- lib/ofp-util.def lib/ofp-util.h lib/ofpbuf.c lib/ofpbuf.h \
2483- lib/ovsdb-data.c lib/ovsdb-data.h lib/ovsdb-error.c \
2484- lib/ovsdb-error.h lib/ovsdb-idl-provider.h lib/ovsdb-idl.c \
2485- lib/ovsdb-idl.h lib/ovsdb-parser.c lib/ovsdb-parser.h \
2486- lib/ovsdb-types.c lib/ovsdb-types.h lib/packets.c \
2487- lib/packets.h lib/pcap.c lib/pcap.h lib/poll-loop.c \
2488- lib/poll-loop.h lib/process.c lib/process.h lib/random.c \
2489- lib/random.h lib/rconn.c lib/rconn.h lib/reconnect.c \
2490- lib/reconnect.h lib/sat-math.h lib/sha1.c lib/sha1.h \
2491- lib/shash.c lib/shash.h lib/signals.c lib/signals.h \
2492- lib/socket-util.c lib/socket-util.h lib/sort.c lib/sort.h \
2493- lib/sset.c lib/sset.h lib/stp.c lib/stp.h lib/stream-fd.c \
2494- lib/stream-fd.h lib/stream-provider.h lib/stream-ssl.h \
2495- lib/stream-tcp.c lib/stream-unix.c lib/stream.c lib/stream.h \
2496- lib/stress.c lib/stress.h lib/string.c lib/string.h lib/svec.c \
2497- lib/svec.h lib/table.c lib/table.h lib/tag.c lib/tag.h \
2498- lib/timer.c lib/timer.h lib/timeval.c lib/timeval.h \
2499- lib/type-props.h lib/unaligned.h lib/unicode.c lib/unicode.h \
2500- lib/unixctl.c lib/unixctl.h lib/util.c lib/util.h lib/uuid.c \
2501- lib/uuid.h lib/valgrind.h lib/vconn-provider.h \
2502- lib/vconn-stream.c lib/vconn.c lib/vconn.h lib/vlan-bitmap.c \
2503- lib/vlan-bitmap.h lib/vlandev.c lib/vlandev.h lib/vlog.c \
2504- lib/vlog.h $(am__append_7) $(am__append_8) $(am__append_10)
2505-nodist_lib_libopenvswitch_a_SOURCES = lib/dirs.c $(am__append_9)
2506-lib_libsflow_a_SOURCES = \
2507- lib/sflow_api.h \
2508- lib/sflow.h \
2509- lib/sflow_agent.c \
2510- lib/sflow_sampler.c \
2511- lib/sflow_poller.c \
2512- lib/sflow_receiver.c
2513-
2514-lib_libsflow_a_CFLAGS = $(AM_CFLAGS) $(am__append_5) $(am__append_6)
2515-
2516-# All distributed sources, with names adjust properly for referencing
2517-# from $(builddir).
2518-@USE_LINKER_SECTIONS_FALSE@all_sources = \
2519-@USE_LINKER_SECTIONS_FALSE@ `for file in $(DIST_SOURCES); do \
2520-@USE_LINKER_SECTIONS_FALSE@ if test -f $$file; then \
2521-@USE_LINKER_SECTIONS_FALSE@ echo $$file; \
2522-@USE_LINKER_SECTIONS_FALSE@ else \
2523-@USE_LINKER_SECTIONS_FALSE@ echo $(VPATH)/$$file; \
2524-@USE_LINKER_SECTIONS_FALSE@ fi; \
2525-@USE_LINKER_SECTIONS_FALSE@ done`
2526-
2527-ofproto_libofproto_a_SOURCES = \
2528- ofproto/collectors.c \
2529- ofproto/collectors.h \
2530- ofproto/connmgr.c \
2531- ofproto/connmgr.h \
2532- ofproto/fail-open.c \
2533- ofproto/fail-open.h \
2534- ofproto/in-band.c \
2535- ofproto/in-band.h \
2536- ofproto/names.c \
2537- ofproto/netflow.c \
2538- ofproto/netflow.h \
2539- ofproto/ofproto.c \
2540- ofproto/ofproto.h \
2541- ofproto/ofproto-dpif.c \
2542- ofproto/ofproto-dpif-sflow.c \
2543- ofproto/ofproto-dpif-sflow.h \
2544- ofproto/ofproto-provider.h \
2545- ofproto/pktbuf.c \
2546- ofproto/pktbuf.h \
2547- ofproto/pinsched.c \
2548- ofproto/pinsched.h
2549-
2550-utilities_ovs_appctl_SOURCES = utilities/ovs-appctl.c
2551-utilities_ovs_appctl_LDADD = lib/libopenvswitch.a
2552-utilities_ovs_controller_SOURCES = utilities/ovs-controller.c
2553-utilities_ovs_controller_LDADD = lib/libopenvswitch.a $(SSL_LIBS)
2554-utilities_ovs_dpctl_SOURCES = utilities/ovs-dpctl.c
2555-utilities_ovs_dpctl_LDADD = lib/libopenvswitch.a
2556-utilities_ovs_ofctl_SOURCES = utilities/ovs-ofctl.c
2557-utilities_ovs_ofctl_LDADD = \
2558- ofproto/libofproto.a \
2559- lib/libopenvswitch.a \
2560- $(SSL_LIBS)
2561-
2562-utilities_ovs_vsctl_SOURCES = utilities/ovs-vsctl.c vswitchd/vswitch-idl.c
2563-utilities_ovs_vsctl_LDADD = lib/libopenvswitch.a $(SSL_LIBS)
2564-@HAVE_NETLINK_TRUE@utilities_ovs_vlan_bug_workaround_SOURCES = utilities/ovs-vlan-bug-workaround.c
2565-@HAVE_NETLINK_TRUE@utilities_ovs_vlan_bug_workaround_LDADD = lib/libopenvswitch.a
2566-@HAVE_NETLINK_TRUE@utilities_nlmon_SOURCES = utilities/nlmon.c
2567-@HAVE_NETLINK_TRUE@utilities_nlmon_LDADD = lib/libopenvswitch.a
2568-utilities_ovs_benchmark_SOURCES = utilities/ovs-benchmark.c
2569-utilities_ovs_benchmark_LDADD = lib/libopenvswitch.a
2570-@HAVE_PYTHON_TRUE@bugtool_plugins = \
2571-@HAVE_PYTHON_TRUE@ utilities/bugtool/plugins/kernel-info/openvswitch.xml \
2572-@HAVE_PYTHON_TRUE@ utilities/bugtool/plugins/network-status/openvswitch.xml \
2573-@HAVE_PYTHON_TRUE@ utilities/bugtool/plugins/system-configuration.xml \
2574-@HAVE_PYTHON_TRUE@ utilities/bugtool/plugins/system-logs/openvswitch.xml \
2575-@HAVE_PYTHON_TRUE@ utilities/bugtool/plugins/system-configuration/openvswitch.xml
2576-
2577-@HAVE_PYTHON_TRUE@bugtool_scripts = \
2578-@HAVE_PYTHON_TRUE@ utilities/bugtool/ovs-bugtool-cfm-show \
2579-@HAVE_PYTHON_TRUE@ utilities/bugtool/ovs-bugtool-lacp-show \
2580-@HAVE_PYTHON_TRUE@ utilities/bugtool/ovs-bugtool-tc-class-show \
2581-@HAVE_PYTHON_TRUE@ utilities/bugtool/ovs-bugtool-ovsdb-dump
2582-
2583-@HAVE_PYTHON_TRUE@bugtoolpluginsdir = $(pkgdatadir)/bugtool-plugins
2584-TESTSUITE_AT = \
2585- tests/testsuite.at \
2586- tests/ovsdb-macros.at \
2587- tests/library.at \
2588- tests/bundle.at \
2589- tests/classifier.at \
2590- tests/check-structs.at \
2591- tests/daemon.at \
2592- tests/daemon-py.at \
2593- tests/ofp-print.at \
2594- tests/ovs-ofctl.at \
2595- tests/odp.at \
2596- tests/multipath.at \
2597- tests/autopath.at \
2598- tests/lacp.at \
2599- tests/learn.at \
2600- tests/vconn.at \
2601- tests/file_name.at \
2602- tests/aes128.at \
2603- tests/uuid.at \
2604- tests/json.at \
2605- tests/jsonrpc.at \
2606- tests/jsonrpc-py.at \
2607- tests/timeval.at \
2608- tests/lockfile.at \
2609- tests/reconnect.at \
2610- tests/ofproto-dpif.at \
2611- tests/ofproto-macros.at \
2612- tests/ofproto.at \
2613- tests/ovsdb.at \
2614- tests/ovsdb-log.at \
2615- tests/ovsdb-types.at \
2616- tests/ovsdb-data.at \
2617- tests/ovsdb-column.at \
2618- tests/ovsdb-table.at \
2619- tests/ovsdb-row.at \
2620- tests/ovsdb-schema.at \
2621- tests/ovsdb-condition.at \
2622- tests/ovsdb-mutation.at \
2623- tests/ovsdb-query.at \
2624- tests/ovsdb-transaction.at \
2625- tests/ovsdb-execution.at \
2626- tests/ovsdb-trigger.at \
2627- tests/ovsdb-tool.at \
2628- tests/ovsdb-server.at \
2629- tests/ovsdb-monitor.at \
2630- tests/ovsdb-idl.at \
2631- tests/ovs-vsctl.at \
2632- tests/ovs-monitor-ipsec.at \
2633- tests/ovs-xapi-sync.at \
2634- tests/stp.at \
2635- tests/interface-reconfigure.at \
2636- tests/vlog.at
2637-
2638-TESTSUITE = $(srcdir)/tests/testsuite
2639-AUTOTEST_PATH = utilities:vswitchd:ovsdb:tests
2640-
2641-# lcov support
2642-lcov_wrappers = \
2643- tests/lcov/ovs-appctl \
2644- tests/lcov/ovs-vsctl \
2645- tests/lcov/ovs-vswitchd \
2646- tests/lcov/ovsdb-client \
2647- tests/lcov/ovsdb-server \
2648- tests/lcov/ovsdb-tool \
2649- tests/lcov/test-aes128 \
2650- tests/lcov/test-bundle \
2651- tests/lcov/test-byte-order \
2652- tests/lcov/test-classifier \
2653- tests/lcov/test-csum \
2654- tests/lcov/test-file_name \
2655- tests/lcov/test-flows \
2656- tests/lcov/test-hash \
2657- tests/lcov/test-hmap \
2658- tests/lcov/test-json \
2659- tests/lcov/test-jsonrpc \
2660- tests/lcov/test-list \
2661- tests/lcov/test-lockfile \
2662- tests/lcov/test-multipath \
2663- tests/lcov/test-odp \
2664- tests/lcov/test-ovsdb \
2665- tests/lcov/test-packets \
2666- tests/lcov/test-random \
2667- tests/lcov/test-reconnect \
2668- tests/lcov/test-sha1 \
2669- tests/lcov/test-stp \
2670- tests/lcov/test-timeval \
2671- tests/lcov/test-type-props \
2672- tests/lcov/test-unix-socket \
2673- tests/lcov/test-uuid \
2674- tests/lcov/test-vconn
2675-
2676-LCOV = lcov -b $(abs_top_builddir) -d $(abs_top_builddir) -q
2677-
2678-# valgrind support
2679-valgrind_wrappers = \
2680- tests/valgrind/ovs-appctl \
2681- tests/valgrind/ovs-vsctl \
2682- tests/valgrind/ovs-vswitchd \
2683- tests/valgrind/ovsdb-client \
2684- tests/valgrind/ovsdb-server \
2685- tests/valgrind/ovsdb-tool \
2686- tests/valgrind/test-aes128 \
2687- tests/valgrind/test-bundle \
2688- tests/valgrind/test-byte-order \
2689- tests/valgrind/test-classifier \
2690- tests/valgrind/test-csum \
2691- tests/valgrind/test-file_name \
2692- tests/valgrind/test-flows \
2693- tests/valgrind/test-hash \
2694- tests/valgrind/test-hmap \
2695- tests/valgrind/test-json \
2696- tests/valgrind/test-jsonrpc \
2697- tests/valgrind/test-list \
2698- tests/valgrind/test-lockfile \
2699- tests/valgrind/test-multipath \
2700- tests/valgrind/test-odp \
2701- tests/valgrind/test-ovsdb \
2702- tests/valgrind/test-packets \
2703- tests/valgrind/test-random \
2704- tests/valgrind/test-reconnect \
2705- tests/valgrind/test-sha1 \
2706- tests/valgrind/test-stp \
2707- tests/valgrind/test-timeval \
2708- tests/valgrind/test-type-props \
2709- tests/valgrind/test-unix-socket \
2710- tests/valgrind/test-uuid \
2711- tests/valgrind/test-vconn
2712-
2713-VALGRIND = valgrind --log-file=valgrind.%p --leak-check=full \
2714- --suppressions=$(abs_top_srcdir)/tests/openssl.supp --num-callers=20
2715-
2716-AUTOM4TE = autom4te
2717-AUTOTEST = $(AUTOM4TE) --language=autotest
2718-tests_test_aes128_SOURCES = tests/test-aes128.c
2719-tests_test_aes128_LDADD = lib/libopenvswitch.a
2720-tests_test_bundle_SOURCES = tests/test-bundle.c
2721-tests_test_bundle_LDADD = lib/libopenvswitch.a
2722-tests_test_classifier_SOURCES = tests/test-classifier.c
2723-tests_test_classifier_LDADD = lib/libopenvswitch.a
2724-tests_test_csum_SOURCES = tests/test-csum.c
2725-tests_test_csum_LDADD = lib/libopenvswitch.a
2726-tests_test_file_name_SOURCES = tests/test-file_name.c
2727-tests_test_file_name_LDADD = lib/libopenvswitch.a
2728-tests_test_flows_SOURCES = tests/test-flows.c
2729-tests_test_flows_LDADD = lib/libopenvswitch.a
2730-dist_check_SCRIPTS = tests/flowgen.pl
2731-tests_test_hash_SOURCES = tests/test-hash.c
2732-tests_test_hash_LDADD = lib/libopenvswitch.a
2733-tests_test_hmap_SOURCES = tests/test-hmap.c
2734-tests_test_hmap_LDADD = lib/libopenvswitch.a
2735-tests_test_json_SOURCES = tests/test-json.c
2736-tests_test_json_LDADD = lib/libopenvswitch.a
2737-tests_test_jsonrpc_SOURCES = tests/test-jsonrpc.c
2738-tests_test_jsonrpc_LDADD = lib/libopenvswitch.a $(SSL_LIBS)
2739-tests_test_list_SOURCES = tests/test-list.c
2740-tests_test_list_LDADD = lib/libopenvswitch.a
2741-tests_test_lockfile_SOURCES = tests/test-lockfile.c
2742-tests_test_lockfile_LDADD = lib/libopenvswitch.a
2743-tests_test_multipath_SOURCES = tests/test-multipath.c
2744-tests_test_multipath_LDADD = lib/libopenvswitch.a
2745-tests_test_packets_SOURCES = tests/test-packets.c
2746-tests_test_packets_LDADD = lib/libopenvswitch.a
2747-tests_test_random_SOURCES = tests/test-random.c
2748-tests_test_random_LDADD = lib/libopenvswitch.a
2749-tests_test_stp_SOURCES = tests/test-stp.c
2750-tests_test_stp_LDADD = lib/libopenvswitch.a
2751-tests_test_unix_socket_SOURCES = tests/test-unix-socket.c
2752-tests_test_unix_socket_LDADD = lib/libopenvswitch.a
2753-tests_test_odp_SOURCES = tests/test-odp.c
2754-tests_test_odp_LDADD = lib/libopenvswitch.a
2755-tests_test_ovsdb_SOURCES = \
2756- tests/test-ovsdb.c \
2757- tests/idltest.c \
2758- tests/idltest.h
2759-
2760-tests_test_ovsdb_LDADD = ovsdb/libovsdb.a lib/libopenvswitch.a $(SSL_LIBS)
2761-IDLTEST_IDL_FILES = tests/idltest.ovsschema tests/idltest.ann
2762-tests_test_reconnect_SOURCES = tests/test-reconnect.c
2763-tests_test_reconnect_LDADD = lib/libopenvswitch.a
2764-tests_test_sha1_SOURCES = tests/test-sha1.c
2765-tests_test_sha1_LDADD = lib/libopenvswitch.a
2766-tests_test_timeval_SOURCES = tests/test-timeval.c
2767-tests_test_timeval_LDADD = lib/libopenvswitch.a
2768-tests_test_strtok_r_SOURCES = tests/test-strtok_r.c
2769-tests_test_type_props_SOURCES = tests/test-type-props.c
2770-tests_test_util_SOURCES = tests/test-util.c
2771-tests_test_util_LDADD = lib/libopenvswitch.a
2772-tests_test_uuid_SOURCES = tests/test-uuid.c
2773-tests_test_uuid_LDADD = lib/libopenvswitch.a
2774-tests_test_vconn_SOURCES = tests/test-vconn.c
2775-tests_test_vconn_LDADD = lib/libopenvswitch.a $(SSL_LIBS)
2776-tests_test_byte_order_SOURCES = tests/test-byte-order.c
2777-tests_test_byte_order_LDADD = lib/libopenvswitch.a
2778-@HAVE_OPENSSL_TRUE@TESTPKI_FILES = \
2779-@HAVE_OPENSSL_TRUE@ tests/testpki-cacert.pem \
2780-@HAVE_OPENSSL_TRUE@ tests/testpki-cert.pem \
2781-@HAVE_OPENSSL_TRUE@ tests/testpki-privkey.pem \
2782-@HAVE_OPENSSL_TRUE@ tests/testpki-req.pem \
2783-@HAVE_OPENSSL_TRUE@ tests/testpki-cert2.pem \
2784-@HAVE_OPENSSL_TRUE@ tests/testpki-privkey2.pem \
2785-@HAVE_OPENSSL_TRUE@ tests/testpki-req2.pem
2786-
2787-@HAVE_OPENSSL_TRUE@OVS_PKI = $(SHELL) $(srcdir)/utilities/ovs-pki.in --dir=tests/pki --log=tests/ovs-pki.log
2788-vswitchd_ovs_vswitchd_SOURCES = \
2789- vswitchd/bridge.c \
2790- vswitchd/bridge.h \
2791- vswitchd/ovs-vswitchd.c \
2792- vswitchd/system-stats.c \
2793- vswitchd/system-stats.h \
2794- vswitchd/vswitch-idl.c \
2795- vswitchd/vswitch-idl.h \
2796- vswitchd/xenserver.c \
2797- vswitchd/xenserver.h
2798-
2799-vswitchd_ovs_vswitchd_LDADD = \
2800- ofproto/libofproto.a \
2801- lib/libsflow.a \
2802- lib/libopenvswitch.a \
2803- $(SSL_LIBS)
2804-
2805-@HAVE_NETLINK_TRUE@vswitchd_ovs_brcompatd_SOURCES = \
2806-@HAVE_NETLINK_TRUE@ vswitchd/ovs-brcompatd.c \
2807-@HAVE_NETLINK_TRUE@ vswitchd/vswitch-idl.c \
2808-@HAVE_NETLINK_TRUE@ vswitchd/vswitch-idl.h
2809-
2810-@HAVE_NETLINK_TRUE@vswitchd_ovs_brcompatd_LDADD = lib/libopenvswitch.a $(SSL_LIBS)
2811-VSWITCH_IDL_FILES = vswitchd/vswitch.ovsschema vswitchd/vswitch-idl.ann
2812-ovsdb_libovsdb_a_SOURCES = \
2813- ovsdb/column.c \
2814- ovsdb/column.h \
2815- ovsdb/condition.c \
2816- ovsdb/condition.h \
2817- ovsdb/execution.c \
2818- ovsdb/file.c \
2819- ovsdb/file.h \
2820- ovsdb/jsonrpc-server.c \
2821- ovsdb/jsonrpc-server.h \
2822- ovsdb/log.c \
2823- ovsdb/log.h \
2824- ovsdb/mutation.c \
2825- ovsdb/mutation.h \
2826- ovsdb/ovsdb-server.c \
2827- ovsdb/ovsdb.c \
2828- ovsdb/ovsdb.h \
2829- ovsdb/query.c \
2830- ovsdb/query.h \
2831- ovsdb/row.c \
2832- ovsdb/row.h \
2833- ovsdb/server.c \
2834- ovsdb/server.h \
2835- ovsdb/table.c \
2836- ovsdb/table.h \
2837- ovsdb/trigger.c \
2838- ovsdb/trigger.h \
2839- ovsdb/transaction.c \
2840- ovsdb/transaction.h
2841-
2842-ovsdb_ovsdb_tool_SOURCES = ovsdb/ovsdb-tool.c
2843-ovsdb_ovsdb_tool_LDADD = ovsdb/libovsdb.a lib/libopenvswitch.a
2844-ovsdb_ovsdb_client_SOURCES = ovsdb/ovsdb-client.c
2845-ovsdb_ovsdb_client_LDADD = ovsdb/libovsdb.a lib/libopenvswitch.a $(SSL_LIBS)
2846-ovsdb_ovsdb_server_SOURCES = ovsdb/ovsdb-server.c
2847-ovsdb_ovsdb_server_LDADD = ovsdb/libovsdb.a lib/libopenvswitch.a $(SSL_LIBS)
2848-OVSDB_IDLC = $(run_python) $(srcdir)/ovsdb/ovsdb-idlc.in
2849-OVSDB_DOC = $(run_python) $(srcdir)/ovsdb/ovsdb-doc.in
2850-OVSDB_DOT = $(run_python) $(srcdir)/ovsdb/ovsdb-dot.in
2851-ovsdbmonitor_pyfiles = \
2852- ovsdb/ovsdbmonitor/OVEApp.py \
2853- ovsdb/ovsdbmonitor/OVECommonWindow.py \
2854- ovsdb/ovsdbmonitor/OVEConfig.py \
2855- ovsdb/ovsdbmonitor/OVEConfigWindow.py \
2856- ovsdb/ovsdbmonitor/OVEFetch.py \
2857- ovsdb/ovsdbmonitor/OVEFlowWindow.py \
2858- ovsdb/ovsdbmonitor/OVEHostWindow.py \
2859- ovsdb/ovsdbmonitor/OVELogWindow.py \
2860- ovsdb/ovsdbmonitor/OVELogger.py \
2861- ovsdb/ovsdbmonitor/OVEMainWindow.py \
2862- ovsdb/ovsdbmonitor/OVEStandard.py \
2863- ovsdb/ovsdbmonitor/OVEUtil.py \
2864- ovsdb/ovsdbmonitor/Ui_ConfigWindow.py \
2865- ovsdb/ovsdbmonitor/Ui_FlowWindow.py \
2866- ovsdb/ovsdbmonitor/Ui_HostWindow.py \
2867- ovsdb/ovsdbmonitor/Ui_LogWindow.py \
2868- ovsdb/ovsdbmonitor/Ui_MainWindow.py \
2869- ovsdb/ovsdbmonitor/qt4reactor.py
2870-
2871-ovsdbmonitordir = ${pkgdatadir}/ovsdbmonitor
2872-@BUILD_OVSDBMONITOR_TRUE@ovsdbmonitor_DATA = $(ovsdbmonitor_pyfiles)
2873-update_spec = \
2874- ($(ro_shell) && sed -e 's,[@]VERSION[@],$(VERSION),g') \
2875- < $(srcdir)/rhel/$(@F).in > $(@F).tmp || exit 1; \
2876- if cmp -s $(@F).tmp $@; then touch $@; rm $(@F).tmp; else mv $(@F).tmp $@; fi
2877-
2878-run_python = PYTHONPATH=$(top_srcdir)/python:$$PYTHONPATH $(PYTHON)
2879-ovstest_pyfiles = \
2880- python/ovstest/__init__.py \
2881- python/ovstest/args.py \
2882- python/ovstest/rpcserver.py \
2883- python/ovstest/tcp.py \
2884- python/ovstest/udp.py \
2885- python/ovstest/util.py
2886-
2887-ovs_pyfiles = \
2888- python/ovs/__init__.py \
2889- python/ovs/daemon.py \
2890- python/ovs/db/__init__.py \
2891- python/ovs/db/data.py \
2892- python/ovs/db/error.py \
2893- python/ovs/db/idl.py \
2894- python/ovs/db/parser.py \
2895- python/ovs/db/schema.py \
2896- python/ovs/db/types.py \
2897- python/ovs/fatal_signal.py \
2898- python/ovs/json.py \
2899- python/ovs/jsonrpc.py \
2900- python/ovs/ovsuuid.py \
2901- python/ovs/poller.py \
2902- python/ovs/process.py \
2903- python/ovs/reconnect.py \
2904- python/ovs/socket_util.py \
2905- python/ovs/stream.py \
2906- python/ovs/timeval.py \
2907- python/ovs/vlog.py \
2908- python/ovs/util.py
2909-
2910-@HAVE_PYTHON_TRUE@nobase_pkgdata_DATA = $(ovs_pyfiles) $(ovstest_pyfiles)
2911-all: $(BUILT_SOURCES) config.h
2912- $(MAKE) $(AM_MAKEFLAGS) all-recursive
2913-
2914-.SUFFIXES:
2915-.SUFFIXES: .in .ovsidl .ovsschema .ui .py .c .h .o .obj
2916-am--refresh:
2917- @:
2918-$(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(srcdir)/manpages.mk $(srcdir)/lib/automake.mk $(srcdir)/ofproto/automake.mk $(srcdir)/utilities/automake.mk $(srcdir)/utilities/bugtool/automake.mk $(srcdir)/tests/automake.mk $(srcdir)/include/automake.mk $(srcdir)/include/linux/automake.mk $(srcdir)/include/openflow/automake.mk $(srcdir)/include/openvswitch/automake.mk $(srcdir)/include/sparse/automake.mk $(srcdir)/third-party/automake.mk $(srcdir)/debian/automake.mk $(srcdir)/vswitchd/automake.mk $(srcdir)/ovsdb/automake.mk $(srcdir)/ovsdb/ovsdbmonitor/automake.mk $(srcdir)/rhel/automake.mk $(srcdir)/xenserver/automake.mk $(srcdir)/python/automake.mk $(srcdir)/python/compat/automake.mk $(am__configure_deps)
2919- @for dep in $?; do \
2920- case '$(am__configure_deps)' in \
2921- *$$dep*) \
2922- echo ' cd $(srcdir) && $(AUTOMAKE) --foreign'; \
2923- $(am__cd) $(srcdir) && $(AUTOMAKE) --foreign \
2924- && exit 0; \
2925- exit 1;; \
2926- esac; \
2927- done; \
2928- echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign Makefile'; \
2929- $(am__cd) $(top_srcdir) && \
2930- $(AUTOMAKE) --foreign Makefile
2931-.PRECIOUS: Makefile
2932-Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
2933- @case '$?' in \
2934- *config.status*) \
2935- echo ' $(SHELL) ./config.status'; \
2936- $(SHELL) ./config.status;; \
2937- *) \
2938- echo ' cd $(top_builddir) && $(SHELL) ./config.status $@ $(am__depfiles_maybe)'; \
2939- cd $(top_builddir) && $(SHELL) ./config.status $@ $(am__depfiles_maybe);; \
2940- esac;
2941-
2942-$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
2943- $(SHELL) ./config.status --recheck
2944-
2945-$(top_srcdir)/configure: $(am__configure_deps)
2946- $(am__cd) $(srcdir) && $(AUTOCONF)
2947-$(ACLOCAL_M4): $(am__aclocal_m4_deps)
2948- $(am__cd) $(srcdir) && $(ACLOCAL) $(ACLOCAL_AMFLAGS)
2949-$(am__aclocal_m4_deps):
2950-
2951-config.h: stamp-h1
2952- @if test ! -f $@; then \
2953- rm -f stamp-h1; \
2954- $(MAKE) $(AM_MAKEFLAGS) stamp-h1; \
2955- else :; fi
2956-
2957-stamp-h1: $(srcdir)/config.h.in $(top_builddir)/config.status
2958- @rm -f stamp-h1
2959- cd $(top_builddir) && $(SHELL) ./config.status config.h
2960-$(srcdir)/config.h.in: $(am__configure_deps)
2961- ($(am__cd) $(top_srcdir) && $(AUTOHEADER))
2962- rm -f stamp-h1
2963- touch $@
2964-
2965-distclean-hdr:
2966- -rm -f config.h stamp-h1
2967-datapath/linux/Kbuild: $(top_builddir)/config.status $(top_srcdir)/datapath/linux/Kbuild.in
2968- cd $(top_builddir) && $(SHELL) ./config.status $@
2969-datapath/linux/Makefile: $(top_builddir)/config.status $(top_srcdir)/datapath/linux/Makefile.in
2970- cd $(top_builddir) && $(SHELL) ./config.status $@
2971-datapath/linux/Makefile.main: $(top_builddir)/config.status $(top_srcdir)/datapath/linux/Makefile.main.in
2972- cd $(top_builddir) && $(SHELL) ./config.status $@
2973-tests/atlocal: $(top_builddir)/config.status $(top_srcdir)/tests/atlocal.in
2974- cd $(top_builddir) && $(SHELL) ./config.status $@
2975-
2976-clean-noinstLIBRARIES:
2977- -test -z "$(noinst_LIBRARIES)" || rm -f $(noinst_LIBRARIES)
2978-lib/$(am__dirstamp):
2979- @$(MKDIR_P) lib
2980- @: > lib/$(am__dirstamp)
2981-lib/$(DEPDIR)/$(am__dirstamp):
2982- @$(MKDIR_P) lib/$(DEPDIR)
2983- @: > lib/$(DEPDIR)/$(am__dirstamp)
2984-lib/aes128.$(OBJEXT): lib/$(am__dirstamp) \
2985- lib/$(DEPDIR)/$(am__dirstamp)
2986-lib/autopath.$(OBJEXT): lib/$(am__dirstamp) \
2987- lib/$(DEPDIR)/$(am__dirstamp)
2988-lib/backtrace.$(OBJEXT): lib/$(am__dirstamp) \
2989- lib/$(DEPDIR)/$(am__dirstamp)
2990-lib/bitmap.$(OBJEXT): lib/$(am__dirstamp) \
2991- lib/$(DEPDIR)/$(am__dirstamp)
2992-lib/bond.$(OBJEXT): lib/$(am__dirstamp) lib/$(DEPDIR)/$(am__dirstamp)
2993-lib/bundle.$(OBJEXT): lib/$(am__dirstamp) \
2994- lib/$(DEPDIR)/$(am__dirstamp)
2995-lib/byteq.$(OBJEXT): lib/$(am__dirstamp) lib/$(DEPDIR)/$(am__dirstamp)
2996-lib/cfm.$(OBJEXT): lib/$(am__dirstamp) lib/$(DEPDIR)/$(am__dirstamp)
2997-lib/classifier.$(OBJEXT): lib/$(am__dirstamp) \
2998- lib/$(DEPDIR)/$(am__dirstamp)
2999-lib/command-line.$(OBJEXT): lib/$(am__dirstamp) \
3000- lib/$(DEPDIR)/$(am__dirstamp)
3001-lib/coverage.$(OBJEXT): lib/$(am__dirstamp) \
3002- lib/$(DEPDIR)/$(am__dirstamp)
3003-lib/csum.$(OBJEXT): lib/$(am__dirstamp) lib/$(DEPDIR)/$(am__dirstamp)
3004-lib/daemon.$(OBJEXT): lib/$(am__dirstamp) \
3005- lib/$(DEPDIR)/$(am__dirstamp)
3006-lib/dummy.$(OBJEXT): lib/$(am__dirstamp) lib/$(DEPDIR)/$(am__dirstamp)
3007-lib/dpif-netdev.$(OBJEXT): lib/$(am__dirstamp) \
3008- lib/$(DEPDIR)/$(am__dirstamp)
3009-lib/dpif.$(OBJEXT): lib/$(am__dirstamp) lib/$(DEPDIR)/$(am__dirstamp)
3010-lib/dynamic-string.$(OBJEXT): lib/$(am__dirstamp) \
3011- lib/$(DEPDIR)/$(am__dirstamp)
3012-lib/entropy.$(OBJEXT): lib/$(am__dirstamp) \
3013- lib/$(DEPDIR)/$(am__dirstamp)
3014-lib/fatal-signal.$(OBJEXT): lib/$(am__dirstamp) \
3015- lib/$(DEPDIR)/$(am__dirstamp)
3016-lib/flow.$(OBJEXT): lib/$(am__dirstamp) lib/$(DEPDIR)/$(am__dirstamp)
3017-lib/hash.$(OBJEXT): lib/$(am__dirstamp) lib/$(DEPDIR)/$(am__dirstamp)
3018-lib/hmap.$(OBJEXT): lib/$(am__dirstamp) lib/$(DEPDIR)/$(am__dirstamp)
3019-lib/hmapx.$(OBJEXT): lib/$(am__dirstamp) lib/$(DEPDIR)/$(am__dirstamp)
3020-lib/json.$(OBJEXT): lib/$(am__dirstamp) lib/$(DEPDIR)/$(am__dirstamp)
3021-lib/jsonrpc.$(OBJEXT): lib/$(am__dirstamp) \
3022- lib/$(DEPDIR)/$(am__dirstamp)
3023-lib/lacp.$(OBJEXT): lib/$(am__dirstamp) lib/$(DEPDIR)/$(am__dirstamp)
3024-lib/leak-checker.$(OBJEXT): lib/$(am__dirstamp) \
3025- lib/$(DEPDIR)/$(am__dirstamp)
3026-lib/learn.$(OBJEXT): lib/$(am__dirstamp) lib/$(DEPDIR)/$(am__dirstamp)
3027-lib/learning-switch.$(OBJEXT): lib/$(am__dirstamp) \
3028- lib/$(DEPDIR)/$(am__dirstamp)
3029-lib/list.$(OBJEXT): lib/$(am__dirstamp) lib/$(DEPDIR)/$(am__dirstamp)
3030-lib/lockfile.$(OBJEXT): lib/$(am__dirstamp) \
3031- lib/$(DEPDIR)/$(am__dirstamp)
3032-lib/mac-learning.$(OBJEXT): lib/$(am__dirstamp) \
3033- lib/$(DEPDIR)/$(am__dirstamp)
3034-lib/meta-flow.$(OBJEXT): lib/$(am__dirstamp) \
3035- lib/$(DEPDIR)/$(am__dirstamp)
3036-lib/multipath.$(OBJEXT): lib/$(am__dirstamp) \
3037- lib/$(DEPDIR)/$(am__dirstamp)
3038-lib/netdev-dummy.$(OBJEXT): lib/$(am__dirstamp) \
3039- lib/$(DEPDIR)/$(am__dirstamp)
3040-lib/netdev.$(OBJEXT): lib/$(am__dirstamp) \
3041- lib/$(DEPDIR)/$(am__dirstamp)
3042-lib/netlink.$(OBJEXT): lib/$(am__dirstamp) \
3043- lib/$(DEPDIR)/$(am__dirstamp)
3044-lib/nx-match.$(OBJEXT): lib/$(am__dirstamp) \
3045- lib/$(DEPDIR)/$(am__dirstamp)
3046-lib/odp-util.$(OBJEXT): lib/$(am__dirstamp) \
3047- lib/$(DEPDIR)/$(am__dirstamp)
3048-lib/ofp-errors.$(OBJEXT): lib/$(am__dirstamp) \
3049- lib/$(DEPDIR)/$(am__dirstamp)
3050-lib/ofp-parse.$(OBJEXT): lib/$(am__dirstamp) \
3051- lib/$(DEPDIR)/$(am__dirstamp)
3052-lib/ofp-print.$(OBJEXT): lib/$(am__dirstamp) \
3053- lib/$(DEPDIR)/$(am__dirstamp)
3054-lib/ofp-util.$(OBJEXT): lib/$(am__dirstamp) \
3055- lib/$(DEPDIR)/$(am__dirstamp)
3056-lib/ofpbuf.$(OBJEXT): lib/$(am__dirstamp) \
3057- lib/$(DEPDIR)/$(am__dirstamp)
3058-lib/ovsdb-data.$(OBJEXT): lib/$(am__dirstamp) \
3059- lib/$(DEPDIR)/$(am__dirstamp)
3060-lib/ovsdb-error.$(OBJEXT): lib/$(am__dirstamp) \
3061- lib/$(DEPDIR)/$(am__dirstamp)
3062-lib/ovsdb-idl.$(OBJEXT): lib/$(am__dirstamp) \
3063- lib/$(DEPDIR)/$(am__dirstamp)
3064-lib/ovsdb-parser.$(OBJEXT): lib/$(am__dirstamp) \
3065- lib/$(DEPDIR)/$(am__dirstamp)
3066-lib/ovsdb-types.$(OBJEXT): lib/$(am__dirstamp) \
3067- lib/$(DEPDIR)/$(am__dirstamp)
3068-lib/packets.$(OBJEXT): lib/$(am__dirstamp) \
3069- lib/$(DEPDIR)/$(am__dirstamp)
3070-lib/pcap.$(OBJEXT): lib/$(am__dirstamp) lib/$(DEPDIR)/$(am__dirstamp)
3071-lib/poll-loop.$(OBJEXT): lib/$(am__dirstamp) \
3072- lib/$(DEPDIR)/$(am__dirstamp)
3073-lib/process.$(OBJEXT): lib/$(am__dirstamp) \
3074- lib/$(DEPDIR)/$(am__dirstamp)
3075-lib/random.$(OBJEXT): lib/$(am__dirstamp) \
3076- lib/$(DEPDIR)/$(am__dirstamp)
3077-lib/rconn.$(OBJEXT): lib/$(am__dirstamp) lib/$(DEPDIR)/$(am__dirstamp)
3078-lib/reconnect.$(OBJEXT): lib/$(am__dirstamp) \
3079- lib/$(DEPDIR)/$(am__dirstamp)
3080-lib/sha1.$(OBJEXT): lib/$(am__dirstamp) lib/$(DEPDIR)/$(am__dirstamp)
3081-lib/shash.$(OBJEXT): lib/$(am__dirstamp) lib/$(DEPDIR)/$(am__dirstamp)
3082-lib/signals.$(OBJEXT): lib/$(am__dirstamp) \
3083- lib/$(DEPDIR)/$(am__dirstamp)
3084-lib/socket-util.$(OBJEXT): lib/$(am__dirstamp) \
3085- lib/$(DEPDIR)/$(am__dirstamp)
3086-lib/sort.$(OBJEXT): lib/$(am__dirstamp) lib/$(DEPDIR)/$(am__dirstamp)
3087-lib/sset.$(OBJEXT): lib/$(am__dirstamp) lib/$(DEPDIR)/$(am__dirstamp)
3088-lib/stp.$(OBJEXT): lib/$(am__dirstamp) lib/$(DEPDIR)/$(am__dirstamp)
3089-lib/stream-fd.$(OBJEXT): lib/$(am__dirstamp) \
3090- lib/$(DEPDIR)/$(am__dirstamp)
3091-lib/stream-tcp.$(OBJEXT): lib/$(am__dirstamp) \
3092- lib/$(DEPDIR)/$(am__dirstamp)
3093-lib/stream-unix.$(OBJEXT): lib/$(am__dirstamp) \
3094- lib/$(DEPDIR)/$(am__dirstamp)
3095-lib/stream.$(OBJEXT): lib/$(am__dirstamp) \
3096- lib/$(DEPDIR)/$(am__dirstamp)
3097-lib/stress.$(OBJEXT): lib/$(am__dirstamp) \
3098- lib/$(DEPDIR)/$(am__dirstamp)
3099-lib/string.$(OBJEXT): lib/$(am__dirstamp) \
3100- lib/$(DEPDIR)/$(am__dirstamp)
3101-lib/svec.$(OBJEXT): lib/$(am__dirstamp) lib/$(DEPDIR)/$(am__dirstamp)
3102-lib/table.$(OBJEXT): lib/$(am__dirstamp) lib/$(DEPDIR)/$(am__dirstamp)
3103-lib/tag.$(OBJEXT): lib/$(am__dirstamp) lib/$(DEPDIR)/$(am__dirstamp)
3104-lib/timer.$(OBJEXT): lib/$(am__dirstamp) lib/$(DEPDIR)/$(am__dirstamp)
3105-lib/timeval.$(OBJEXT): lib/$(am__dirstamp) \
3106- lib/$(DEPDIR)/$(am__dirstamp)
3107-lib/unicode.$(OBJEXT): lib/$(am__dirstamp) \
3108- lib/$(DEPDIR)/$(am__dirstamp)
3109-lib/unixctl.$(OBJEXT): lib/$(am__dirstamp) \
3110- lib/$(DEPDIR)/$(am__dirstamp)
3111-lib/util.$(OBJEXT): lib/$(am__dirstamp) lib/$(DEPDIR)/$(am__dirstamp)
3112-lib/uuid.$(OBJEXT): lib/$(am__dirstamp) lib/$(DEPDIR)/$(am__dirstamp)
3113-lib/vconn-stream.$(OBJEXT): lib/$(am__dirstamp) \
3114- lib/$(DEPDIR)/$(am__dirstamp)
3115-lib/vconn.$(OBJEXT): lib/$(am__dirstamp) lib/$(DEPDIR)/$(am__dirstamp)
3116-lib/vlan-bitmap.$(OBJEXT): lib/$(am__dirstamp) \
3117- lib/$(DEPDIR)/$(am__dirstamp)
3118-lib/vlandev.$(OBJEXT): lib/$(am__dirstamp) \
3119- lib/$(DEPDIR)/$(am__dirstamp)
3120-lib/vlog.$(OBJEXT): lib/$(am__dirstamp) lib/$(DEPDIR)/$(am__dirstamp)
3121-lib/dpif-linux.$(OBJEXT): lib/$(am__dirstamp) \
3122- lib/$(DEPDIR)/$(am__dirstamp)
3123-lib/netdev-linux.$(OBJEXT): lib/$(am__dirstamp) \
3124- lib/$(DEPDIR)/$(am__dirstamp)
3125-lib/netdev-vport.$(OBJEXT): lib/$(am__dirstamp) \
3126- lib/$(DEPDIR)/$(am__dirstamp)
3127-lib/netlink-notifier.$(OBJEXT): lib/$(am__dirstamp) \
3128- lib/$(DEPDIR)/$(am__dirstamp)
3129-lib/netlink-socket.$(OBJEXT): lib/$(am__dirstamp) \
3130- lib/$(DEPDIR)/$(am__dirstamp)
3131-lib/rtnetlink-link.$(OBJEXT): lib/$(am__dirstamp) \
3132- lib/$(DEPDIR)/$(am__dirstamp)
3133-lib/route-table.$(OBJEXT): lib/$(am__dirstamp) \
3134- lib/$(DEPDIR)/$(am__dirstamp)
3135-lib/stream-ssl.$(OBJEXT): lib/$(am__dirstamp) \
3136- lib/$(DEPDIR)/$(am__dirstamp)
3137-lib/stream-nossl.$(OBJEXT): lib/$(am__dirstamp) \
3138- lib/$(DEPDIR)/$(am__dirstamp)
3139-lib/dirs.$(OBJEXT): lib/$(am__dirstamp) lib/$(DEPDIR)/$(am__dirstamp)
3140-lib/dhparams.$(OBJEXT): lib/$(am__dirstamp) \
3141- lib/$(DEPDIR)/$(am__dirstamp)
3142-lib/libopenvswitch.a: $(lib_libopenvswitch_a_OBJECTS) $(lib_libopenvswitch_a_DEPENDENCIES) lib/$(am__dirstamp)
3143- -rm -f lib/libopenvswitch.a
3144- $(lib_libopenvswitch_a_AR) lib/libopenvswitch.a $(lib_libopenvswitch_a_OBJECTS) $(lib_libopenvswitch_a_LIBADD)
3145- $(RANLIB) lib/libopenvswitch.a
3146-lib/lib_libsflow_a-sflow_agent.$(OBJEXT): lib/$(am__dirstamp) \
3147- lib/$(DEPDIR)/$(am__dirstamp)
3148-lib/lib_libsflow_a-sflow_sampler.$(OBJEXT): lib/$(am__dirstamp) \
3149- lib/$(DEPDIR)/$(am__dirstamp)
3150-lib/lib_libsflow_a-sflow_poller.$(OBJEXT): lib/$(am__dirstamp) \
3151- lib/$(DEPDIR)/$(am__dirstamp)
3152-lib/lib_libsflow_a-sflow_receiver.$(OBJEXT): lib/$(am__dirstamp) \
3153- lib/$(DEPDIR)/$(am__dirstamp)
3154-lib/libsflow.a: $(lib_libsflow_a_OBJECTS) $(lib_libsflow_a_DEPENDENCIES) lib/$(am__dirstamp)
3155- -rm -f lib/libsflow.a
3156- $(lib_libsflow_a_AR) lib/libsflow.a $(lib_libsflow_a_OBJECTS) $(lib_libsflow_a_LIBADD)
3157- $(RANLIB) lib/libsflow.a
3158-ofproto/$(am__dirstamp):
3159- @$(MKDIR_P) ofproto
3160- @: > ofproto/$(am__dirstamp)
3161-ofproto/$(DEPDIR)/$(am__dirstamp):
3162- @$(MKDIR_P) ofproto/$(DEPDIR)
3163- @: > ofproto/$(DEPDIR)/$(am__dirstamp)
3164-ofproto/collectors.$(OBJEXT): ofproto/$(am__dirstamp) \
3165- ofproto/$(DEPDIR)/$(am__dirstamp)
3166-ofproto/connmgr.$(OBJEXT): ofproto/$(am__dirstamp) \
3167- ofproto/$(DEPDIR)/$(am__dirstamp)
3168-ofproto/fail-open.$(OBJEXT): ofproto/$(am__dirstamp) \
3169- ofproto/$(DEPDIR)/$(am__dirstamp)
3170-ofproto/in-band.$(OBJEXT): ofproto/$(am__dirstamp) \
3171- ofproto/$(DEPDIR)/$(am__dirstamp)
3172-ofproto/names.$(OBJEXT): ofproto/$(am__dirstamp) \
3173- ofproto/$(DEPDIR)/$(am__dirstamp)
3174-ofproto/netflow.$(OBJEXT): ofproto/$(am__dirstamp) \
3175- ofproto/$(DEPDIR)/$(am__dirstamp)
3176-ofproto/ofproto.$(OBJEXT): ofproto/$(am__dirstamp) \
3177- ofproto/$(DEPDIR)/$(am__dirstamp)
3178-ofproto/ofproto-dpif.$(OBJEXT): ofproto/$(am__dirstamp) \
3179- ofproto/$(DEPDIR)/$(am__dirstamp)
3180-ofproto/ofproto-dpif-sflow.$(OBJEXT): ofproto/$(am__dirstamp) \
3181- ofproto/$(DEPDIR)/$(am__dirstamp)
3182-ofproto/pktbuf.$(OBJEXT): ofproto/$(am__dirstamp) \
3183- ofproto/$(DEPDIR)/$(am__dirstamp)
3184-ofproto/pinsched.$(OBJEXT): ofproto/$(am__dirstamp) \
3185- ofproto/$(DEPDIR)/$(am__dirstamp)
3186-ofproto/libofproto.a: $(ofproto_libofproto_a_OBJECTS) $(ofproto_libofproto_a_DEPENDENCIES) ofproto/$(am__dirstamp)
3187- -rm -f ofproto/libofproto.a
3188- $(ofproto_libofproto_a_AR) ofproto/libofproto.a $(ofproto_libofproto_a_OBJECTS) $(ofproto_libofproto_a_LIBADD)
3189- $(RANLIB) ofproto/libofproto.a
3190-ovsdb/$(am__dirstamp):
3191- @$(MKDIR_P) ovsdb
3192- @: > ovsdb/$(am__dirstamp)
3193-ovsdb/$(DEPDIR)/$(am__dirstamp):
3194- @$(MKDIR_P) ovsdb/$(DEPDIR)
3195- @: > ovsdb/$(DEPDIR)/$(am__dirstamp)
3196-ovsdb/column.$(OBJEXT): ovsdb/$(am__dirstamp) \
3197- ovsdb/$(DEPDIR)/$(am__dirstamp)
3198-ovsdb/condition.$(OBJEXT): ovsdb/$(am__dirstamp) \
3199- ovsdb/$(DEPDIR)/$(am__dirstamp)
3200-ovsdb/execution.$(OBJEXT): ovsdb/$(am__dirstamp) \
3201- ovsdb/$(DEPDIR)/$(am__dirstamp)
3202-ovsdb/file.$(OBJEXT): ovsdb/$(am__dirstamp) \
3203- ovsdb/$(DEPDIR)/$(am__dirstamp)
3204-ovsdb/jsonrpc-server.$(OBJEXT): ovsdb/$(am__dirstamp) \
3205- ovsdb/$(DEPDIR)/$(am__dirstamp)
3206-ovsdb/log.$(OBJEXT): ovsdb/$(am__dirstamp) \
3207- ovsdb/$(DEPDIR)/$(am__dirstamp)
3208-ovsdb/mutation.$(OBJEXT): ovsdb/$(am__dirstamp) \
3209- ovsdb/$(DEPDIR)/$(am__dirstamp)
3210-ovsdb/ovsdb-server.$(OBJEXT): ovsdb/$(am__dirstamp) \
3211- ovsdb/$(DEPDIR)/$(am__dirstamp)
3212-ovsdb/ovsdb.$(OBJEXT): ovsdb/$(am__dirstamp) \
3213- ovsdb/$(DEPDIR)/$(am__dirstamp)
3214-ovsdb/query.$(OBJEXT): ovsdb/$(am__dirstamp) \
3215- ovsdb/$(DEPDIR)/$(am__dirstamp)
3216-ovsdb/row.$(OBJEXT): ovsdb/$(am__dirstamp) \
3217- ovsdb/$(DEPDIR)/$(am__dirstamp)
3218-ovsdb/server.$(OBJEXT): ovsdb/$(am__dirstamp) \
3219- ovsdb/$(DEPDIR)/$(am__dirstamp)
3220-ovsdb/table.$(OBJEXT): ovsdb/$(am__dirstamp) \
3221- ovsdb/$(DEPDIR)/$(am__dirstamp)
3222-ovsdb/trigger.$(OBJEXT): ovsdb/$(am__dirstamp) \
3223- ovsdb/$(DEPDIR)/$(am__dirstamp)
3224-ovsdb/transaction.$(OBJEXT): ovsdb/$(am__dirstamp) \
3225- ovsdb/$(DEPDIR)/$(am__dirstamp)
3226-ovsdb/libovsdb.a: $(ovsdb_libovsdb_a_OBJECTS) $(ovsdb_libovsdb_a_DEPENDENCIES) ovsdb/$(am__dirstamp)
3227- -rm -f ovsdb/libovsdb.a
3228- $(ovsdb_libovsdb_a_AR) ovsdb/libovsdb.a $(ovsdb_libovsdb_a_OBJECTS) $(ovsdb_libovsdb_a_LIBADD)
3229- $(RANLIB) ovsdb/libovsdb.a
3230-install-binPROGRAMS: $(bin_PROGRAMS)
3231- @$(NORMAL_INSTALL)
3232- test -z "$(bindir)" || $(MKDIR_P) "$(DESTDIR)$(bindir)"
3233- @list='$(bin_PROGRAMS)'; test -n "$(bindir)" || list=; \
3234- for p in $$list; do echo "$$p $$p"; done | \
3235- sed 's/$(EXEEXT)$$//' | \
3236- while read p p1; do if test -f $$p; \
3237- then echo "$$p"; echo "$$p"; else :; fi; \
3238- done | \
3239- sed -e 'p;s,.*/,,;n;h' -e 's|.*|.|' \
3240- -e 'p;x;s,.*/,,;s/$(EXEEXT)$$//;$(transform);s/$$/$(EXEEXT)/' | \
3241- sed 'N;N;N;s,\n, ,g' | \
3242- $(AWK) 'BEGIN { files["."] = ""; dirs["."] = 1 } \
3243- { d=$$3; if (dirs[d] != 1) { print "d", d; dirs[d] = 1 } \
3244- if ($$2 == $$4) files[d] = files[d] " " $$1; \
3245- else { print "f", $$3 "/" $$4, $$1; } } \
3246- END { for (d in files) print "f", d, files[d] }' | \
3247- while read type dir files; do \
3248- if test "$$dir" = .; then dir=; else dir=/$$dir; fi; \
3249- test -z "$$files" || { \
3250- echo " $(INSTALL_PROGRAM_ENV) $(INSTALL_PROGRAM) $$files '$(DESTDIR)$(bindir)$$dir'"; \
3251- $(INSTALL_PROGRAM_ENV) $(INSTALL_PROGRAM) $$files "$(DESTDIR)$(bindir)$$dir" || exit $$?; \
3252- } \
3253- ; done
3254-
3255-uninstall-binPROGRAMS:
3256- @$(NORMAL_UNINSTALL)
3257- @list='$(bin_PROGRAMS)'; test -n "$(bindir)" || list=; \
3258- files=`for p in $$list; do echo "$$p"; done | \
3259- sed -e 'h;s,^.*/,,;s/$(EXEEXT)$$//;$(transform)' \
3260- -e 's/$$/$(EXEEXT)/' `; \
3261- test -n "$$list" || exit 0; \
3262- echo " ( cd '$(DESTDIR)$(bindir)' && rm -f" $$files ")"; \
3263- cd "$(DESTDIR)$(bindir)" && rm -f $$files
3264-
3265-clean-binPROGRAMS:
3266- -test -z "$(bin_PROGRAMS)" || rm -f $(bin_PROGRAMS)
3267-
3268-clean-noinstPROGRAMS:
3269- -test -z "$(noinst_PROGRAMS)" || rm -f $(noinst_PROGRAMS)
3270-install-sbinPROGRAMS: $(sbin_PROGRAMS)
3271- @$(NORMAL_INSTALL)
3272- test -z "$(sbindir)" || $(MKDIR_P) "$(DESTDIR)$(sbindir)"
3273- @list='$(sbin_PROGRAMS)'; test -n "$(sbindir)" || list=; \
3274- for p in $$list; do echo "$$p $$p"; done | \
3275- sed 's/$(EXEEXT)$$//' | \
3276- while read p p1; do if test -f $$p; \
3277- then echo "$$p"; echo "$$p"; else :; fi; \
3278- done | \
3279- sed -e 'p;s,.*/,,;n;h' -e 's|.*|.|' \
3280- -e 'p;x;s,.*/,,;s/$(EXEEXT)$$//;$(transform);s/$$/$(EXEEXT)/' | \
3281- sed 'N;N;N;s,\n, ,g' | \
3282- $(AWK) 'BEGIN { files["."] = ""; dirs["."] = 1 } \
3283- { d=$$3; if (dirs[d] != 1) { print "d", d; dirs[d] = 1 } \
3284- if ($$2 == $$4) files[d] = files[d] " " $$1; \
3285- else { print "f", $$3 "/" $$4, $$1; } } \
3286- END { for (d in files) print "f", d, files[d] }' | \
3287- while read type dir files; do \
3288- if test "$$dir" = .; then dir=; else dir=/$$dir; fi; \
3289- test -z "$$files" || { \
3290- echo " $(INSTALL_PROGRAM_ENV) $(INSTALL_PROGRAM) $$files '$(DESTDIR)$(sbindir)$$dir'"; \
3291- $(INSTALL_PROGRAM_ENV) $(INSTALL_PROGRAM) $$files "$(DESTDIR)$(sbindir)$$dir" || exit $$?; \
3292- } \
3293- ; done
3294-
3295-uninstall-sbinPROGRAMS:
3296- @$(NORMAL_UNINSTALL)
3297- @list='$(sbin_PROGRAMS)'; test -n "$(sbindir)" || list=; \
3298- files=`for p in $$list; do echo "$$p"; done | \
3299- sed -e 'h;s,^.*/,,;s/$(EXEEXT)$$//;$(transform)' \
3300- -e 's/$$/$(EXEEXT)/' `; \
3301- test -n "$$list" || exit 0; \
3302- echo " ( cd '$(DESTDIR)$(sbindir)' && rm -f" $$files ")"; \
3303- cd "$(DESTDIR)$(sbindir)" && rm -f $$files
3304-
3305-clean-sbinPROGRAMS:
3306- -test -z "$(sbin_PROGRAMS)" || rm -f $(sbin_PROGRAMS)
3307-ovsdb/ovsdb-client.$(OBJEXT): ovsdb/$(am__dirstamp) \
3308- ovsdb/$(DEPDIR)/$(am__dirstamp)
3309-ovsdb/ovsdb-client$(EXEEXT): $(ovsdb_ovsdb_client_OBJECTS) $(ovsdb_ovsdb_client_DEPENDENCIES) ovsdb/$(am__dirstamp)
3310- @rm -f ovsdb/ovsdb-client$(EXEEXT)
3311- $(LINK) $(ovsdb_ovsdb_client_OBJECTS) $(ovsdb_ovsdb_client_LDADD) $(LIBS)
3312-ovsdb/ovsdb-server$(EXEEXT): $(ovsdb_ovsdb_server_OBJECTS) $(ovsdb_ovsdb_server_DEPENDENCIES) ovsdb/$(am__dirstamp)
3313- @rm -f ovsdb/ovsdb-server$(EXEEXT)
3314- $(LINK) $(ovsdb_ovsdb_server_OBJECTS) $(ovsdb_ovsdb_server_LDADD) $(LIBS)
3315-ovsdb/ovsdb-tool.$(OBJEXT): ovsdb/$(am__dirstamp) \
3316- ovsdb/$(DEPDIR)/$(am__dirstamp)
3317-ovsdb/ovsdb-tool$(EXEEXT): $(ovsdb_ovsdb_tool_OBJECTS) $(ovsdb_ovsdb_tool_DEPENDENCIES) ovsdb/$(am__dirstamp)
3318- @rm -f ovsdb/ovsdb-tool$(EXEEXT)
3319- $(LINK) $(ovsdb_ovsdb_tool_OBJECTS) $(ovsdb_ovsdb_tool_LDADD) $(LIBS)
3320-tests/$(am__dirstamp):
3321- @$(MKDIR_P) tests
3322- @: > tests/$(am__dirstamp)
3323-tests/$(DEPDIR)/$(am__dirstamp):
3324- @$(MKDIR_P) tests/$(DEPDIR)
3325- @: > tests/$(DEPDIR)/$(am__dirstamp)
3326-tests/test-aes128.$(OBJEXT): tests/$(am__dirstamp) \
3327- tests/$(DEPDIR)/$(am__dirstamp)
3328-tests/test-aes128$(EXEEXT): $(tests_test_aes128_OBJECTS) $(tests_test_aes128_DEPENDENCIES) tests/$(am__dirstamp)
3329- @rm -f tests/test-aes128$(EXEEXT)
3330- $(LINK) $(tests_test_aes128_OBJECTS) $(tests_test_aes128_LDADD) $(LIBS)
3331-tests/test-bundle.$(OBJEXT): tests/$(am__dirstamp) \
3332- tests/$(DEPDIR)/$(am__dirstamp)
3333-tests/test-bundle$(EXEEXT): $(tests_test_bundle_OBJECTS) $(tests_test_bundle_DEPENDENCIES) tests/$(am__dirstamp)
3334- @rm -f tests/test-bundle$(EXEEXT)
3335- $(LINK) $(tests_test_bundle_OBJECTS) $(tests_test_bundle_LDADD) $(LIBS)
3336-tests/test-byte-order.$(OBJEXT): tests/$(am__dirstamp) \
3337- tests/$(DEPDIR)/$(am__dirstamp)
3338-tests/test-byte-order$(EXEEXT): $(tests_test_byte_order_OBJECTS) $(tests_test_byte_order_DEPENDENCIES) tests/$(am__dirstamp)
3339- @rm -f tests/test-byte-order$(EXEEXT)
3340- $(LINK) $(tests_test_byte_order_OBJECTS) $(tests_test_byte_order_LDADD) $(LIBS)
3341-tests/test-classifier.$(OBJEXT): tests/$(am__dirstamp) \
3342- tests/$(DEPDIR)/$(am__dirstamp)
3343-tests/test-classifier$(EXEEXT): $(tests_test_classifier_OBJECTS) $(tests_test_classifier_DEPENDENCIES) tests/$(am__dirstamp)
3344- @rm -f tests/test-classifier$(EXEEXT)
3345- $(LINK) $(tests_test_classifier_OBJECTS) $(tests_test_classifier_LDADD) $(LIBS)
3346-tests/test-csum.$(OBJEXT): tests/$(am__dirstamp) \
3347- tests/$(DEPDIR)/$(am__dirstamp)
3348-tests/test-csum$(EXEEXT): $(tests_test_csum_OBJECTS) $(tests_test_csum_DEPENDENCIES) tests/$(am__dirstamp)
3349- @rm -f tests/test-csum$(EXEEXT)
3350- $(LINK) $(tests_test_csum_OBJECTS) $(tests_test_csum_LDADD) $(LIBS)
3351-tests/test-file_name.$(OBJEXT): tests/$(am__dirstamp) \
3352- tests/$(DEPDIR)/$(am__dirstamp)
3353-tests/test-file_name$(EXEEXT): $(tests_test_file_name_OBJECTS) $(tests_test_file_name_DEPENDENCIES) tests/$(am__dirstamp)
3354- @rm -f tests/test-file_name$(EXEEXT)
3355- $(LINK) $(tests_test_file_name_OBJECTS) $(tests_test_file_name_LDADD) $(LIBS)
3356-tests/test-flows.$(OBJEXT): tests/$(am__dirstamp) \
3357- tests/$(DEPDIR)/$(am__dirstamp)
3358-tests/test-flows$(EXEEXT): $(tests_test_flows_OBJECTS) $(tests_test_flows_DEPENDENCIES) tests/$(am__dirstamp)
3359- @rm -f tests/test-flows$(EXEEXT)
3360- $(LINK) $(tests_test_flows_OBJECTS) $(tests_test_flows_LDADD) $(LIBS)
3361-tests/test-hash.$(OBJEXT): tests/$(am__dirstamp) \
3362- tests/$(DEPDIR)/$(am__dirstamp)
3363-tests/test-hash$(EXEEXT): $(tests_test_hash_OBJECTS) $(tests_test_hash_DEPENDENCIES) tests/$(am__dirstamp)
3364- @rm -f tests/test-hash$(EXEEXT)
3365- $(LINK) $(tests_test_hash_OBJECTS) $(tests_test_hash_LDADD) $(LIBS)
3366-tests/test-hmap.$(OBJEXT): tests/$(am__dirstamp) \
3367- tests/$(DEPDIR)/$(am__dirstamp)
3368-tests/test-hmap$(EXEEXT): $(tests_test_hmap_OBJECTS) $(tests_test_hmap_DEPENDENCIES) tests/$(am__dirstamp)
3369- @rm -f tests/test-hmap$(EXEEXT)
3370- $(LINK) $(tests_test_hmap_OBJECTS) $(tests_test_hmap_LDADD) $(LIBS)
3371-tests/test-json.$(OBJEXT): tests/$(am__dirstamp) \
3372- tests/$(DEPDIR)/$(am__dirstamp)
3373-tests/test-json$(EXEEXT): $(tests_test_json_OBJECTS) $(tests_test_json_DEPENDENCIES) tests/$(am__dirstamp)
3374- @rm -f tests/test-json$(EXEEXT)
3375- $(LINK) $(tests_test_json_OBJECTS) $(tests_test_json_LDADD) $(LIBS)
3376-tests/test-jsonrpc.$(OBJEXT): tests/$(am__dirstamp) \
3377- tests/$(DEPDIR)/$(am__dirstamp)
3378-tests/test-jsonrpc$(EXEEXT): $(tests_test_jsonrpc_OBJECTS) $(tests_test_jsonrpc_DEPENDENCIES) tests/$(am__dirstamp)
3379- @rm -f tests/test-jsonrpc$(EXEEXT)
3380- $(LINK) $(tests_test_jsonrpc_OBJECTS) $(tests_test_jsonrpc_LDADD) $(LIBS)
3381-tests/test-list.$(OBJEXT): tests/$(am__dirstamp) \
3382- tests/$(DEPDIR)/$(am__dirstamp)
3383-tests/test-list$(EXEEXT): $(tests_test_list_OBJECTS) $(tests_test_list_DEPENDENCIES) tests/$(am__dirstamp)
3384- @rm -f tests/test-list$(EXEEXT)
3385- $(LINK) $(tests_test_list_OBJECTS) $(tests_test_list_LDADD) $(LIBS)
3386-tests/test-lockfile.$(OBJEXT): tests/$(am__dirstamp) \
3387- tests/$(DEPDIR)/$(am__dirstamp)
3388-tests/test-lockfile$(EXEEXT): $(tests_test_lockfile_OBJECTS) $(tests_test_lockfile_DEPENDENCIES) tests/$(am__dirstamp)
3389- @rm -f tests/test-lockfile$(EXEEXT)
3390- $(LINK) $(tests_test_lockfile_OBJECTS) $(tests_test_lockfile_LDADD) $(LIBS)
3391-tests/test-multipath.$(OBJEXT): tests/$(am__dirstamp) \
3392- tests/$(DEPDIR)/$(am__dirstamp)
3393-tests/test-multipath$(EXEEXT): $(tests_test_multipath_OBJECTS) $(tests_test_multipath_DEPENDENCIES) tests/$(am__dirstamp)
3394- @rm -f tests/test-multipath$(EXEEXT)
3395- $(LINK) $(tests_test_multipath_OBJECTS) $(tests_test_multipath_LDADD) $(LIBS)
3396-tests/test-odp.$(OBJEXT): tests/$(am__dirstamp) \
3397- tests/$(DEPDIR)/$(am__dirstamp)
3398-tests/test-odp$(EXEEXT): $(tests_test_odp_OBJECTS) $(tests_test_odp_DEPENDENCIES) tests/$(am__dirstamp)
3399- @rm -f tests/test-odp$(EXEEXT)
3400- $(LINK) $(tests_test_odp_OBJECTS) $(tests_test_odp_LDADD) $(LIBS)
3401-tests/test-ovsdb.$(OBJEXT): tests/$(am__dirstamp) \
3402- tests/$(DEPDIR)/$(am__dirstamp)
3403-tests/idltest.$(OBJEXT): tests/$(am__dirstamp) \
3404- tests/$(DEPDIR)/$(am__dirstamp)
3405-tests/test-ovsdb$(EXEEXT): $(tests_test_ovsdb_OBJECTS) $(tests_test_ovsdb_DEPENDENCIES) tests/$(am__dirstamp)
3406- @rm -f tests/test-ovsdb$(EXEEXT)
3407- $(LINK) $(tests_test_ovsdb_OBJECTS) $(tests_test_ovsdb_LDADD) $(LIBS)
3408-tests/test-packets.$(OBJEXT): tests/$(am__dirstamp) \
3409- tests/$(DEPDIR)/$(am__dirstamp)
3410-tests/test-packets$(EXEEXT): $(tests_test_packets_OBJECTS) $(tests_test_packets_DEPENDENCIES) tests/$(am__dirstamp)
3411- @rm -f tests/test-packets$(EXEEXT)
3412- $(LINK) $(tests_test_packets_OBJECTS) $(tests_test_packets_LDADD) $(LIBS)
3413-tests/test-random.$(OBJEXT): tests/$(am__dirstamp) \
3414- tests/$(DEPDIR)/$(am__dirstamp)
3415-tests/test-random$(EXEEXT): $(tests_test_random_OBJECTS) $(tests_test_random_DEPENDENCIES) tests/$(am__dirstamp)
3416- @rm -f tests/test-random$(EXEEXT)
3417- $(LINK) $(tests_test_random_OBJECTS) $(tests_test_random_LDADD) $(LIBS)
3418-tests/test-reconnect.$(OBJEXT): tests/$(am__dirstamp) \
3419- tests/$(DEPDIR)/$(am__dirstamp)
3420-tests/test-reconnect$(EXEEXT): $(tests_test_reconnect_OBJECTS) $(tests_test_reconnect_DEPENDENCIES) tests/$(am__dirstamp)
3421- @rm -f tests/test-reconnect$(EXEEXT)
3422- $(LINK) $(tests_test_reconnect_OBJECTS) $(tests_test_reconnect_LDADD) $(LIBS)
3423-tests/test-sha1.$(OBJEXT): tests/$(am__dirstamp) \
3424- tests/$(DEPDIR)/$(am__dirstamp)
3425-tests/test-sha1$(EXEEXT): $(tests_test_sha1_OBJECTS) $(tests_test_sha1_DEPENDENCIES) tests/$(am__dirstamp)
3426- @rm -f tests/test-sha1$(EXEEXT)
3427- $(LINK) $(tests_test_sha1_OBJECTS) $(tests_test_sha1_LDADD) $(LIBS)
3428-tests/test-stp.$(OBJEXT): tests/$(am__dirstamp) \
3429- tests/$(DEPDIR)/$(am__dirstamp)
3430-tests/test-stp$(EXEEXT): $(tests_test_stp_OBJECTS) $(tests_test_stp_DEPENDENCIES) tests/$(am__dirstamp)
3431- @rm -f tests/test-stp$(EXEEXT)
3432- $(LINK) $(tests_test_stp_OBJECTS) $(tests_test_stp_LDADD) $(LIBS)
3433-tests/test-strtok_r.$(OBJEXT): tests/$(am__dirstamp) \
3434- tests/$(DEPDIR)/$(am__dirstamp)
3435-tests/test-strtok_r$(EXEEXT): $(tests_test_strtok_r_OBJECTS) $(tests_test_strtok_r_DEPENDENCIES) tests/$(am__dirstamp)
3436- @rm -f tests/test-strtok_r$(EXEEXT)
3437- $(LINK) $(tests_test_strtok_r_OBJECTS) $(tests_test_strtok_r_LDADD) $(LIBS)
3438-tests/test-timeval.$(OBJEXT): tests/$(am__dirstamp) \
3439- tests/$(DEPDIR)/$(am__dirstamp)
3440-tests/test-timeval$(EXEEXT): $(tests_test_timeval_OBJECTS) $(tests_test_timeval_DEPENDENCIES) tests/$(am__dirstamp)
3441- @rm -f tests/test-timeval$(EXEEXT)
3442- $(LINK) $(tests_test_timeval_OBJECTS) $(tests_test_timeval_LDADD) $(LIBS)
3443-tests/test-type-props.$(OBJEXT): tests/$(am__dirstamp) \
3444- tests/$(DEPDIR)/$(am__dirstamp)
3445-tests/test-type-props$(EXEEXT): $(tests_test_type_props_OBJECTS) $(tests_test_type_props_DEPENDENCIES) tests/$(am__dirstamp)
3446- @rm -f tests/test-type-props$(EXEEXT)
3447- $(LINK) $(tests_test_type_props_OBJECTS) $(tests_test_type_props_LDADD) $(LIBS)
3448-tests/test-unix-socket.$(OBJEXT): tests/$(am__dirstamp) \
3449- tests/$(DEPDIR)/$(am__dirstamp)
3450-tests/test-unix-socket$(EXEEXT): $(tests_test_unix_socket_OBJECTS) $(tests_test_unix_socket_DEPENDENCIES) tests/$(am__dirstamp)
3451- @rm -f tests/test-unix-socket$(EXEEXT)
3452- $(LINK) $(tests_test_unix_socket_OBJECTS) $(tests_test_unix_socket_LDADD) $(LIBS)
3453-tests/test-util.$(OBJEXT): tests/$(am__dirstamp) \
3454- tests/$(DEPDIR)/$(am__dirstamp)
3455-tests/test-util$(EXEEXT): $(tests_test_util_OBJECTS) $(tests_test_util_DEPENDENCIES) tests/$(am__dirstamp)
3456- @rm -f tests/test-util$(EXEEXT)
3457- $(LINK) $(tests_test_util_OBJECTS) $(tests_test_util_LDADD) $(LIBS)
3458-tests/test-uuid.$(OBJEXT): tests/$(am__dirstamp) \
3459- tests/$(DEPDIR)/$(am__dirstamp)
3460-tests/test-uuid$(EXEEXT): $(tests_test_uuid_OBJECTS) $(tests_test_uuid_DEPENDENCIES) tests/$(am__dirstamp)
3461- @rm -f tests/test-uuid$(EXEEXT)
3462- $(LINK) $(tests_test_uuid_OBJECTS) $(tests_test_uuid_LDADD) $(LIBS)
3463-tests/test-vconn.$(OBJEXT): tests/$(am__dirstamp) \
3464- tests/$(DEPDIR)/$(am__dirstamp)
3465-tests/test-vconn$(EXEEXT): $(tests_test_vconn_OBJECTS) $(tests_test_vconn_DEPENDENCIES) tests/$(am__dirstamp)
3466- @rm -f tests/test-vconn$(EXEEXT)
3467- $(LINK) $(tests_test_vconn_OBJECTS) $(tests_test_vconn_LDADD) $(LIBS)
3468-utilities/$(am__dirstamp):
3469- @$(MKDIR_P) utilities
3470- @: > utilities/$(am__dirstamp)
3471-utilities/$(DEPDIR)/$(am__dirstamp):
3472- @$(MKDIR_P) utilities/$(DEPDIR)
3473- @: > utilities/$(DEPDIR)/$(am__dirstamp)
3474-utilities/nlmon.$(OBJEXT): utilities/$(am__dirstamp) \
3475- utilities/$(DEPDIR)/$(am__dirstamp)
3476-utilities/nlmon$(EXEEXT): $(utilities_nlmon_OBJECTS) $(utilities_nlmon_DEPENDENCIES) utilities/$(am__dirstamp)
3477- @rm -f utilities/nlmon$(EXEEXT)
3478- $(LINK) $(utilities_nlmon_OBJECTS) $(utilities_nlmon_LDADD) $(LIBS)
3479-utilities/ovs-appctl.$(OBJEXT): utilities/$(am__dirstamp) \
3480- utilities/$(DEPDIR)/$(am__dirstamp)
3481-utilities/ovs-appctl$(EXEEXT): $(utilities_ovs_appctl_OBJECTS) $(utilities_ovs_appctl_DEPENDENCIES) utilities/$(am__dirstamp)
3482- @rm -f utilities/ovs-appctl$(EXEEXT)
3483- $(LINK) $(utilities_ovs_appctl_OBJECTS) $(utilities_ovs_appctl_LDADD) $(LIBS)
3484-utilities/ovs-benchmark.$(OBJEXT): utilities/$(am__dirstamp) \
3485- utilities/$(DEPDIR)/$(am__dirstamp)
3486-utilities/ovs-benchmark$(EXEEXT): $(utilities_ovs_benchmark_OBJECTS) $(utilities_ovs_benchmark_DEPENDENCIES) utilities/$(am__dirstamp)
3487- @rm -f utilities/ovs-benchmark$(EXEEXT)
3488- $(LINK) $(utilities_ovs_benchmark_OBJECTS) $(utilities_ovs_benchmark_LDADD) $(LIBS)
3489-utilities/ovs-controller.$(OBJEXT): utilities/$(am__dirstamp) \
3490- utilities/$(DEPDIR)/$(am__dirstamp)
3491-utilities/ovs-controller$(EXEEXT): $(utilities_ovs_controller_OBJECTS) $(utilities_ovs_controller_DEPENDENCIES) utilities/$(am__dirstamp)
3492- @rm -f utilities/ovs-controller$(EXEEXT)
3493- $(LINK) $(utilities_ovs_controller_OBJECTS) $(utilities_ovs_controller_LDADD) $(LIBS)
3494-utilities/ovs-dpctl.$(OBJEXT): utilities/$(am__dirstamp) \
3495- utilities/$(DEPDIR)/$(am__dirstamp)
3496-utilities/ovs-dpctl$(EXEEXT): $(utilities_ovs_dpctl_OBJECTS) $(utilities_ovs_dpctl_DEPENDENCIES) utilities/$(am__dirstamp)
3497- @rm -f utilities/ovs-dpctl$(EXEEXT)
3498- $(LINK) $(utilities_ovs_dpctl_OBJECTS) $(utilities_ovs_dpctl_LDADD) $(LIBS)
3499-utilities/ovs-ofctl.$(OBJEXT): utilities/$(am__dirstamp) \
3500- utilities/$(DEPDIR)/$(am__dirstamp)
3501-utilities/ovs-ofctl$(EXEEXT): $(utilities_ovs_ofctl_OBJECTS) $(utilities_ovs_ofctl_DEPENDENCIES) utilities/$(am__dirstamp)
3502- @rm -f utilities/ovs-ofctl$(EXEEXT)
3503- $(LINK) $(utilities_ovs_ofctl_OBJECTS) $(utilities_ovs_ofctl_LDADD) $(LIBS)
3504-utilities/ovs-vlan-bug-workaround.$(OBJEXT): \
3505- utilities/$(am__dirstamp) utilities/$(DEPDIR)/$(am__dirstamp)
3506-utilities/ovs-vlan-bug-workaround$(EXEEXT): $(utilities_ovs_vlan_bug_workaround_OBJECTS) $(utilities_ovs_vlan_bug_workaround_DEPENDENCIES) utilities/$(am__dirstamp)
3507- @rm -f utilities/ovs-vlan-bug-workaround$(EXEEXT)
3508- $(LINK) $(utilities_ovs_vlan_bug_workaround_OBJECTS) $(utilities_ovs_vlan_bug_workaround_LDADD) $(LIBS)
3509-utilities/ovs-vsctl.$(OBJEXT): utilities/$(am__dirstamp) \
3510- utilities/$(DEPDIR)/$(am__dirstamp)
3511-vswitchd/$(am__dirstamp):
3512- @$(MKDIR_P) vswitchd
3513- @: > vswitchd/$(am__dirstamp)
3514-vswitchd/$(DEPDIR)/$(am__dirstamp):
3515- @$(MKDIR_P) vswitchd/$(DEPDIR)
3516- @: > vswitchd/$(DEPDIR)/$(am__dirstamp)
3517-vswitchd/vswitch-idl.$(OBJEXT): vswitchd/$(am__dirstamp) \
3518- vswitchd/$(DEPDIR)/$(am__dirstamp)
3519-utilities/ovs-vsctl$(EXEEXT): $(utilities_ovs_vsctl_OBJECTS) $(utilities_ovs_vsctl_DEPENDENCIES) utilities/$(am__dirstamp)
3520- @rm -f utilities/ovs-vsctl$(EXEEXT)
3521- $(LINK) $(utilities_ovs_vsctl_OBJECTS) $(utilities_ovs_vsctl_LDADD) $(LIBS)
3522-vswitchd/ovs-brcompatd.$(OBJEXT): vswitchd/$(am__dirstamp) \
3523- vswitchd/$(DEPDIR)/$(am__dirstamp)
3524-vswitchd/ovs-brcompatd$(EXEEXT): $(vswitchd_ovs_brcompatd_OBJECTS) $(vswitchd_ovs_brcompatd_DEPENDENCIES) vswitchd/$(am__dirstamp)
3525- @rm -f vswitchd/ovs-brcompatd$(EXEEXT)
3526- $(LINK) $(vswitchd_ovs_brcompatd_OBJECTS) $(vswitchd_ovs_brcompatd_LDADD) $(LIBS)
3527-vswitchd/bridge.$(OBJEXT): vswitchd/$(am__dirstamp) \
3528- vswitchd/$(DEPDIR)/$(am__dirstamp)
3529-vswitchd/ovs-vswitchd.$(OBJEXT): vswitchd/$(am__dirstamp) \
3530- vswitchd/$(DEPDIR)/$(am__dirstamp)
3531-vswitchd/system-stats.$(OBJEXT): vswitchd/$(am__dirstamp) \
3532- vswitchd/$(DEPDIR)/$(am__dirstamp)
3533-vswitchd/xenserver.$(OBJEXT): vswitchd/$(am__dirstamp) \
3534- vswitchd/$(DEPDIR)/$(am__dirstamp)
3535-vswitchd/ovs-vswitchd$(EXEEXT): $(vswitchd_ovs_vswitchd_OBJECTS) $(vswitchd_ovs_vswitchd_DEPENDENCIES) vswitchd/$(am__dirstamp)
3536- @rm -f vswitchd/ovs-vswitchd$(EXEEXT)
3537- $(LINK) $(vswitchd_ovs_vswitchd_OBJECTS) $(vswitchd_ovs_vswitchd_LDADD) $(LIBS)
3538-install-binSCRIPTS: $(bin_SCRIPTS)
3539- @$(NORMAL_INSTALL)
3540- test -z "$(bindir)" || $(MKDIR_P) "$(DESTDIR)$(bindir)"
3541- @list='$(bin_SCRIPTS)'; test -n "$(bindir)" || list=; \
3542- for p in $$list; do \
3543- if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \
3544- if test -f "$$d$$p"; then echo "$$d$$p"; echo "$$p"; else :; fi; \
3545- done | \
3546- sed -e 'p;s,.*/,,;n' \
3547- -e 'h;s|.*|.|' \
3548- -e 'p;x;s,.*/,,;$(transform)' | sed 'N;N;N;s,\n, ,g' | \
3549- $(AWK) 'BEGIN { files["."] = ""; dirs["."] = 1; } \
3550- { d=$$3; if (dirs[d] != 1) { print "d", d; dirs[d] = 1 } \
3551- if ($$2 == $$4) { files[d] = files[d] " " $$1; \
3552- if (++n[d] == $(am__install_max)) { \
3553- print "f", d, files[d]; n[d] = 0; files[d] = "" } } \
3554- else { print "f", d "/" $$4, $$1 } } \
3555- END { for (d in files) print "f", d, files[d] }' | \
3556- while read type dir files; do \
3557- if test "$$dir" = .; then dir=; else dir=/$$dir; fi; \
3558- test -z "$$files" || { \
3559- echo " $(INSTALL_SCRIPT) $$files '$(DESTDIR)$(bindir)$$dir'"; \
3560- $(INSTALL_SCRIPT) $$files "$(DESTDIR)$(bindir)$$dir" || exit $$?; \
3561- } \
3562- ; done
3563-
3564-uninstall-binSCRIPTS:
3565- @$(NORMAL_UNINSTALL)
3566- @list='$(bin_SCRIPTS)'; test -n "$(bindir)" || exit 0; \
3567- files=`for p in $$list; do echo "$$p"; done | \
3568- sed -e 's,.*/,,;$(transform)'`; \
3569- test -n "$$list" || exit 0; \
3570- echo " ( cd '$(DESTDIR)$(bindir)' && rm -f" $$files ")"; \
3571- cd "$(DESTDIR)$(bindir)" && rm -f $$files
3572-install-dist_pkgdataSCRIPTS: $(dist_pkgdata_SCRIPTS)
3573- @$(NORMAL_INSTALL)
3574- test -z "$(pkgdatadir)" || $(MKDIR_P) "$(DESTDIR)$(pkgdatadir)"
3575- @list='$(dist_pkgdata_SCRIPTS)'; test -n "$(pkgdatadir)" || list=; \
3576- for p in $$list; do \
3577- if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \
3578- if test -f "$$d$$p"; then echo "$$d$$p"; echo "$$p"; else :; fi; \
3579- done | \
3580- sed -e 'p;s,.*/,,;n' \
3581- -e 'h;s|.*|.|' \
3582- -e 'p;x;s,.*/,,;$(transform)' | sed 'N;N;N;s,\n, ,g' | \
3583- $(AWK) 'BEGIN { files["."] = ""; dirs["."] = 1; } \
3584- { d=$$3; if (dirs[d] != 1) { print "d", d; dirs[d] = 1 } \
3585- if ($$2 == $$4) { files[d] = files[d] " " $$1; \
3586- if (++n[d] == $(am__install_max)) { \
3587- print "f", d, files[d]; n[d] = 0; files[d] = "" } } \
3588- else { print "f", d "/" $$4, $$1 } } \
3589- END { for (d in files) print "f", d, files[d] }' | \
3590- while read type dir files; do \
3591- if test "$$dir" = .; then dir=; else dir=/$$dir; fi; \
3592- test -z "$$files" || { \
3593- echo " $(INSTALL_SCRIPT) $$files '$(DESTDIR)$(pkgdatadir)$$dir'"; \
3594- $(INSTALL_SCRIPT) $$files "$(DESTDIR)$(pkgdatadir)$$dir" || exit $$?; \
3595- } \
3596- ; done
3597-
3598-uninstall-dist_pkgdataSCRIPTS:
3599- @$(NORMAL_UNINSTALL)
3600- @list='$(dist_pkgdata_SCRIPTS)'; test -n "$(pkgdatadir)" || exit 0; \
3601- files=`for p in $$list; do echo "$$p"; done | \
3602- sed -e 's,.*/,,;$(transform)'`; \
3603- test -n "$$list" || exit 0; \
3604- echo " ( cd '$(DESTDIR)$(pkgdatadir)' && rm -f" $$files ")"; \
3605- cd "$(DESTDIR)$(pkgdatadir)" && rm -f $$files
3606-install-dist_sbinSCRIPTS: $(dist_sbin_SCRIPTS)
3607- @$(NORMAL_INSTALL)
3608- test -z "$(sbindir)" || $(MKDIR_P) "$(DESTDIR)$(sbindir)"
3609- @list='$(dist_sbin_SCRIPTS)'; test -n "$(sbindir)" || list=; \
3610- for p in $$list; do \
3611- if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \
3612- if test -f "$$d$$p"; then echo "$$d$$p"; echo "$$p"; else :; fi; \
3613- done | \
3614- sed -e 'p;s,.*/,,;n' \
3615- -e 'h;s|.*|.|' \
3616- -e 'p;x;s,.*/,,;$(transform)' | sed 'N;N;N;s,\n, ,g' | \
3617- $(AWK) 'BEGIN { files["."] = ""; dirs["."] = 1; } \
3618- { d=$$3; if (dirs[d] != 1) { print "d", d; dirs[d] = 1 } \
3619- if ($$2 == $$4) { files[d] = files[d] " " $$1; \
3620- if (++n[d] == $(am__install_max)) { \
3621- print "f", d, files[d]; n[d] = 0; files[d] = "" } } \
3622- else { print "f", d "/" $$4, $$1 } } \
3623- END { for (d in files) print "f", d, files[d] }' | \
3624- while read type dir files; do \
3625- if test "$$dir" = .; then dir=; else dir=/$$dir; fi; \
3626- test -z "$$files" || { \
3627- echo " $(INSTALL_SCRIPT) $$files '$(DESTDIR)$(sbindir)$$dir'"; \
3628- $(INSTALL_SCRIPT) $$files "$(DESTDIR)$(sbindir)$$dir" || exit $$?; \
3629- } \
3630- ; done
3631-
3632-uninstall-dist_sbinSCRIPTS:
3633- @$(NORMAL_UNINSTALL)
3634- @list='$(dist_sbin_SCRIPTS)'; test -n "$(sbindir)" || exit 0; \
3635- files=`for p in $$list; do echo "$$p"; done | \
3636- sed -e 's,.*/,,;$(transform)'`; \
3637- test -n "$$list" || exit 0; \
3638- echo " ( cd '$(DESTDIR)$(sbindir)' && rm -f" $$files ")"; \
3639- cd "$(DESTDIR)$(sbindir)" && rm -f $$files
3640-install-dist_scriptsSCRIPTS: $(dist_scripts_SCRIPTS)
3641- @$(NORMAL_INSTALL)
3642- test -z "$(scriptsdir)" || $(MKDIR_P) "$(DESTDIR)$(scriptsdir)"
3643- @list='$(dist_scripts_SCRIPTS)'; test -n "$(scriptsdir)" || list=; \
3644- for p in $$list; do \
3645- if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \
3646- if test -f "$$d$$p"; then echo "$$d$$p"; echo "$$p"; else :; fi; \
3647- done | \
3648- sed -e 'p;s,.*/,,;n' \
3649- -e 'h;s|.*|.|' \
3650- -e 'p;x;s,.*/,,;$(transform)' | sed 'N;N;N;s,\n, ,g' | \
3651- $(AWK) 'BEGIN { files["."] = ""; dirs["."] = 1; } \
3652- { d=$$3; if (dirs[d] != 1) { print "d", d; dirs[d] = 1 } \
3653- if ($$2 == $$4) { files[d] = files[d] " " $$1; \
3654- if (++n[d] == $(am__install_max)) { \
3655- print "f", d, files[d]; n[d] = 0; files[d] = "" } } \
3656- else { print "f", d "/" $$4, $$1 } } \
3657- END { for (d in files) print "f", d, files[d] }' | \
3658- while read type dir files; do \
3659- if test "$$dir" = .; then dir=; else dir=/$$dir; fi; \
3660- test -z "$$files" || { \
3661- echo " $(INSTALL_SCRIPT) $$files '$(DESTDIR)$(scriptsdir)$$dir'"; \
3662- $(INSTALL_SCRIPT) $$files "$(DESTDIR)$(scriptsdir)$$dir" || exit $$?; \
3663- } \
3664- ; done
3665-
3666-uninstall-dist_scriptsSCRIPTS:
3667- @$(NORMAL_UNINSTALL)
3668- @list='$(dist_scripts_SCRIPTS)'; test -n "$(scriptsdir)" || exit 0; \
3669- files=`for p in $$list; do echo "$$p"; done | \
3670- sed -e 's,.*/,,;$(transform)'`; \
3671- test -n "$$list" || exit 0; \
3672- echo " ( cd '$(DESTDIR)$(scriptsdir)' && rm -f" $$files ")"; \
3673- cd "$(DESTDIR)$(scriptsdir)" && rm -f $$files
3674-install-sbinSCRIPTS: $(sbin_SCRIPTS)
3675- @$(NORMAL_INSTALL)
3676- test -z "$(sbindir)" || $(MKDIR_P) "$(DESTDIR)$(sbindir)"
3677- @list='$(sbin_SCRIPTS)'; test -n "$(sbindir)" || list=; \
3678- for p in $$list; do \
3679- if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \
3680- if test -f "$$d$$p"; then echo "$$d$$p"; echo "$$p"; else :; fi; \
3681- done | \
3682- sed -e 'p;s,.*/,,;n' \
3683- -e 'h;s|.*|.|' \
3684- -e 'p;x;s,.*/,,;$(transform)' | sed 'N;N;N;s,\n, ,g' | \
3685- $(AWK) 'BEGIN { files["."] = ""; dirs["."] = 1; } \
3686- { d=$$3; if (dirs[d] != 1) { print "d", d; dirs[d] = 1 } \
3687- if ($$2 == $$4) { files[d] = files[d] " " $$1; \
3688- if (++n[d] == $(am__install_max)) { \
3689- print "f", d, files[d]; n[d] = 0; files[d] = "" } } \
3690- else { print "f", d "/" $$4, $$1 } } \
3691- END { for (d in files) print "f", d, files[d] }' | \
3692- while read type dir files; do \
3693- if test "$$dir" = .; then dir=; else dir=/$$dir; fi; \
3694- test -z "$$files" || { \
3695- echo " $(INSTALL_SCRIPT) $$files '$(DESTDIR)$(sbindir)$$dir'"; \
3696- $(INSTALL_SCRIPT) $$files "$(DESTDIR)$(sbindir)$$dir" || exit $$?; \
3697- } \
3698- ; done
3699-
3700-uninstall-sbinSCRIPTS:
3701- @$(NORMAL_UNINSTALL)
3702- @list='$(sbin_SCRIPTS)'; test -n "$(sbindir)" || exit 0; \
3703- files=`for p in $$list; do echo "$$p"; done | \
3704- sed -e 's,.*/,,;$(transform)'`; \
3705- test -n "$$list" || exit 0; \
3706- echo " ( cd '$(DESTDIR)$(sbindir)' && rm -f" $$files ")"; \
3707- cd "$(DESTDIR)$(sbindir)" && rm -f $$files
3708-install-scriptsSCRIPTS: $(scripts_SCRIPTS)
3709- @$(NORMAL_INSTALL)
3710- test -z "$(scriptsdir)" || $(MKDIR_P) "$(DESTDIR)$(scriptsdir)"
3711- @list='$(scripts_SCRIPTS)'; test -n "$(scriptsdir)" || list=; \
3712- for p in $$list; do \
3713- if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \
3714- if test -f "$$d$$p"; then echo "$$d$$p"; echo "$$p"; else :; fi; \
3715- done | \
3716- sed -e 'p;s,.*/,,;n' \
3717- -e 'h;s|.*|.|' \
3718- -e 'p;x;s,.*/,,;$(transform)' | sed 'N;N;N;s,\n, ,g' | \
3719- $(AWK) 'BEGIN { files["."] = ""; dirs["."] = 1; } \
3720- { d=$$3; if (dirs[d] != 1) { print "d", d; dirs[d] = 1 } \
3721- if ($$2 == $$4) { files[d] = files[d] " " $$1; \
3722- if (++n[d] == $(am__install_max)) { \
3723- print "f", d, files[d]; n[d] = 0; files[d] = "" } } \
3724- else { print "f", d "/" $$4, $$1 } } \
3725- END { for (d in files) print "f", d, files[d] }' | \
3726- while read type dir files; do \
3727- if test "$$dir" = .; then dir=; else dir=/$$dir; fi; \
3728- test -z "$$files" || { \
3729- echo " $(INSTALL_SCRIPT) $$files '$(DESTDIR)$(scriptsdir)$$dir'"; \
3730- $(INSTALL_SCRIPT) $$files "$(DESTDIR)$(scriptsdir)$$dir" || exit $$?; \
3731- } \
3732- ; done
3733-
3734-uninstall-scriptsSCRIPTS:
3735- @$(NORMAL_UNINSTALL)
3736- @list='$(scripts_SCRIPTS)'; test -n "$(scriptsdir)" || exit 0; \
3737- files=`for p in $$list; do echo "$$p"; done | \
3738- sed -e 's,.*/,,;$(transform)'`; \
3739- test -n "$$list" || exit 0; \
3740- echo " ( cd '$(DESTDIR)$(scriptsdir)' && rm -f" $$files ")"; \
3741- cd "$(DESTDIR)$(scriptsdir)" && rm -f $$files
3742-
3743-mostlyclean-compile:
3744- -rm -f *.$(OBJEXT)
3745- -rm -f lib/aes128.$(OBJEXT)
3746- -rm -f lib/autopath.$(OBJEXT)
3747- -rm -f lib/backtrace.$(OBJEXT)
3748- -rm -f lib/bitmap.$(OBJEXT)
3749- -rm -f lib/bond.$(OBJEXT)
3750- -rm -f lib/bundle.$(OBJEXT)
3751- -rm -f lib/byteq.$(OBJEXT)
3752- -rm -f lib/cfm.$(OBJEXT)
3753- -rm -f lib/classifier.$(OBJEXT)
3754- -rm -f lib/command-line.$(OBJEXT)
3755- -rm -f lib/coverage.$(OBJEXT)
3756- -rm -f lib/csum.$(OBJEXT)
3757- -rm -f lib/daemon.$(OBJEXT)
3758- -rm -f lib/dhparams.$(OBJEXT)
3759- -rm -f lib/dirs.$(OBJEXT)
3760- -rm -f lib/dpif-linux.$(OBJEXT)
3761- -rm -f lib/dpif-netdev.$(OBJEXT)
3762- -rm -f lib/dpif.$(OBJEXT)
3763- -rm -f lib/dummy.$(OBJEXT)
3764- -rm -f lib/dynamic-string.$(OBJEXT)
3765- -rm -f lib/entropy.$(OBJEXT)
3766- -rm -f lib/fatal-signal.$(OBJEXT)
3767- -rm -f lib/flow.$(OBJEXT)
3768- -rm -f lib/hash.$(OBJEXT)
3769- -rm -f lib/hmap.$(OBJEXT)
3770- -rm -f lib/hmapx.$(OBJEXT)
3771- -rm -f lib/json.$(OBJEXT)
3772- -rm -f lib/jsonrpc.$(OBJEXT)
3773- -rm -f lib/lacp.$(OBJEXT)
3774- -rm -f lib/leak-checker.$(OBJEXT)
3775- -rm -f lib/learn.$(OBJEXT)
3776- -rm -f lib/learning-switch.$(OBJEXT)
3777- -rm -f lib/lib_libsflow_a-sflow_agent.$(OBJEXT)
3778- -rm -f lib/lib_libsflow_a-sflow_poller.$(OBJEXT)
3779- -rm -f lib/lib_libsflow_a-sflow_receiver.$(OBJEXT)
3780- -rm -f lib/lib_libsflow_a-sflow_sampler.$(OBJEXT)
3781- -rm -f lib/list.$(OBJEXT)
3782- -rm -f lib/lockfile.$(OBJEXT)
3783- -rm -f lib/mac-learning.$(OBJEXT)
3784- -rm -f lib/meta-flow.$(OBJEXT)
3785- -rm -f lib/multipath.$(OBJEXT)
3786- -rm -f lib/netdev-dummy.$(OBJEXT)
3787- -rm -f lib/netdev-linux.$(OBJEXT)
3788- -rm -f lib/netdev-vport.$(OBJEXT)
3789- -rm -f lib/netdev.$(OBJEXT)
3790- -rm -f lib/netlink-notifier.$(OBJEXT)
3791- -rm -f lib/netlink-socket.$(OBJEXT)
3792- -rm -f lib/netlink.$(OBJEXT)
3793- -rm -f lib/nx-match.$(OBJEXT)
3794- -rm -f lib/odp-util.$(OBJEXT)
3795- -rm -f lib/ofp-errors.$(OBJEXT)
3796- -rm -f lib/ofp-parse.$(OBJEXT)
3797- -rm -f lib/ofp-print.$(OBJEXT)
3798- -rm -f lib/ofp-util.$(OBJEXT)
3799- -rm -f lib/ofpbuf.$(OBJEXT)
3800- -rm -f lib/ovsdb-data.$(OBJEXT)
3801- -rm -f lib/ovsdb-error.$(OBJEXT)
3802- -rm -f lib/ovsdb-idl.$(OBJEXT)
3803- -rm -f lib/ovsdb-parser.$(OBJEXT)
3804- -rm -f lib/ovsdb-types.$(OBJEXT)
3805- -rm -f lib/packets.$(OBJEXT)
3806- -rm -f lib/pcap.$(OBJEXT)
3807- -rm -f lib/poll-loop.$(OBJEXT)
3808- -rm -f lib/process.$(OBJEXT)
3809- -rm -f lib/random.$(OBJEXT)
3810- -rm -f lib/rconn.$(OBJEXT)
3811- -rm -f lib/reconnect.$(OBJEXT)
3812- -rm -f lib/route-table.$(OBJEXT)
3813- -rm -f lib/rtnetlink-link.$(OBJEXT)
3814- -rm -f lib/sha1.$(OBJEXT)
3815- -rm -f lib/shash.$(OBJEXT)
3816- -rm -f lib/signals.$(OBJEXT)
3817- -rm -f lib/socket-util.$(OBJEXT)
3818- -rm -f lib/sort.$(OBJEXT)
3819- -rm -f lib/sset.$(OBJEXT)
3820- -rm -f lib/stp.$(OBJEXT)
3821- -rm -f lib/stream-fd.$(OBJEXT)
3822- -rm -f lib/stream-nossl.$(OBJEXT)
3823- -rm -f lib/stream-ssl.$(OBJEXT)
3824- -rm -f lib/stream-tcp.$(OBJEXT)
3825- -rm -f lib/stream-unix.$(OBJEXT)
3826- -rm -f lib/stream.$(OBJEXT)
3827- -rm -f lib/stress.$(OBJEXT)
3828- -rm -f lib/string.$(OBJEXT)
3829- -rm -f lib/svec.$(OBJEXT)
3830- -rm -f lib/table.$(OBJEXT)
3831- -rm -f lib/tag.$(OBJEXT)
3832- -rm -f lib/timer.$(OBJEXT)
3833- -rm -f lib/timeval.$(OBJEXT)
3834- -rm -f lib/unicode.$(OBJEXT)
3835- -rm -f lib/unixctl.$(OBJEXT)
3836- -rm -f lib/util.$(OBJEXT)
3837- -rm -f lib/uuid.$(OBJEXT)
3838- -rm -f lib/vconn-stream.$(OBJEXT)
3839- -rm -f lib/vconn.$(OBJEXT)
3840- -rm -f lib/vlan-bitmap.$(OBJEXT)
3841- -rm -f lib/vlandev.$(OBJEXT)
3842- -rm -f lib/vlog.$(OBJEXT)
3843- -rm -f ofproto/collectors.$(OBJEXT)
3844- -rm -f ofproto/connmgr.$(OBJEXT)
3845- -rm -f ofproto/fail-open.$(OBJEXT)
3846- -rm -f ofproto/in-band.$(OBJEXT)
3847- -rm -f ofproto/names.$(OBJEXT)
3848- -rm -f ofproto/netflow.$(OBJEXT)
3849- -rm -f ofproto/ofproto-dpif-sflow.$(OBJEXT)
3850- -rm -f ofproto/ofproto-dpif.$(OBJEXT)
3851- -rm -f ofproto/ofproto.$(OBJEXT)
3852- -rm -f ofproto/pinsched.$(OBJEXT)
3853- -rm -f ofproto/pktbuf.$(OBJEXT)
3854- -rm -f ovsdb/column.$(OBJEXT)
3855- -rm -f ovsdb/condition.$(OBJEXT)
3856- -rm -f ovsdb/execution.$(OBJEXT)
3857- -rm -f ovsdb/file.$(OBJEXT)
3858- -rm -f ovsdb/jsonrpc-server.$(OBJEXT)
3859- -rm -f ovsdb/log.$(OBJEXT)
3860- -rm -f ovsdb/mutation.$(OBJEXT)
3861- -rm -f ovsdb/ovsdb-client.$(OBJEXT)
3862- -rm -f ovsdb/ovsdb-server.$(OBJEXT)
3863- -rm -f ovsdb/ovsdb-tool.$(OBJEXT)
3864- -rm -f ovsdb/ovsdb.$(OBJEXT)
3865- -rm -f ovsdb/query.$(OBJEXT)
3866- -rm -f ovsdb/row.$(OBJEXT)
3867- -rm -f ovsdb/server.$(OBJEXT)
3868- -rm -f ovsdb/table.$(OBJEXT)
3869- -rm -f ovsdb/transaction.$(OBJEXT)
3870- -rm -f ovsdb/trigger.$(OBJEXT)
3871- -rm -f tests/idltest.$(OBJEXT)
3872- -rm -f tests/test-aes128.$(OBJEXT)
3873- -rm -f tests/test-bundle.$(OBJEXT)
3874- -rm -f tests/test-byte-order.$(OBJEXT)
3875- -rm -f tests/test-classifier.$(OBJEXT)
3876- -rm -f tests/test-csum.$(OBJEXT)
3877- -rm -f tests/test-file_name.$(OBJEXT)
3878- -rm -f tests/test-flows.$(OBJEXT)
3879- -rm -f tests/test-hash.$(OBJEXT)
3880- -rm -f tests/test-hmap.$(OBJEXT)
3881- -rm -f tests/test-json.$(OBJEXT)
3882- -rm -f tests/test-jsonrpc.$(OBJEXT)
3883- -rm -f tests/test-list.$(OBJEXT)
3884- -rm -f tests/test-lockfile.$(OBJEXT)
3885- -rm -f tests/test-multipath.$(OBJEXT)
3886- -rm -f tests/test-odp.$(OBJEXT)
3887- -rm -f tests/test-ovsdb.$(OBJEXT)
3888- -rm -f tests/test-packets.$(OBJEXT)
3889- -rm -f tests/test-random.$(OBJEXT)
3890- -rm -f tests/test-reconnect.$(OBJEXT)
3891- -rm -f tests/test-sha1.$(OBJEXT)
3892- -rm -f tests/test-stp.$(OBJEXT)
3893- -rm -f tests/test-strtok_r.$(OBJEXT)
3894- -rm -f tests/test-timeval.$(OBJEXT)
3895- -rm -f tests/test-type-props.$(OBJEXT)
3896- -rm -f tests/test-unix-socket.$(OBJEXT)
3897- -rm -f tests/test-util.$(OBJEXT)
3898- -rm -f tests/test-uuid.$(OBJEXT)
3899- -rm -f tests/test-vconn.$(OBJEXT)
3900- -rm -f utilities/nlmon.$(OBJEXT)
3901- -rm -f utilities/ovs-appctl.$(OBJEXT)
3902- -rm -f utilities/ovs-benchmark.$(OBJEXT)
3903- -rm -f utilities/ovs-controller.$(OBJEXT)
3904- -rm -f utilities/ovs-dpctl.$(OBJEXT)
3905- -rm -f utilities/ovs-ofctl.$(OBJEXT)
3906- -rm -f utilities/ovs-vlan-bug-workaround.$(OBJEXT)
3907- -rm -f utilities/ovs-vsctl.$(OBJEXT)
3908- -rm -f vswitchd/bridge.$(OBJEXT)
3909- -rm -f vswitchd/ovs-brcompatd.$(OBJEXT)
3910- -rm -f vswitchd/ovs-vswitchd.$(OBJEXT)
3911- -rm -f vswitchd/system-stats.$(OBJEXT)
3912- -rm -f vswitchd/vswitch-idl.$(OBJEXT)
3913- -rm -f vswitchd/xenserver.$(OBJEXT)
3914-
3915-distclean-compile:
3916- -rm -f *.tab.c
3917-
3918-@AMDEP_TRUE@@am__include@ @am__quote@lib/$(DEPDIR)/aes128.Po@am__quote@
3919-@AMDEP_TRUE@@am__include@ @am__quote@lib/$(DEPDIR)/autopath.Po@am__quote@
3920-@AMDEP_TRUE@@am__include@ @am__quote@lib/$(DEPDIR)/backtrace.Po@am__quote@
3921-@AMDEP_TRUE@@am__include@ @am__quote@lib/$(DEPDIR)/bitmap.Po@am__quote@
3922-@AMDEP_TRUE@@am__include@ @am__quote@lib/$(DEPDIR)/bond.Po@am__quote@
3923-@AMDEP_TRUE@@am__include@ @am__quote@lib/$(DEPDIR)/bundle.Po@am__quote@
3924-@AMDEP_TRUE@@am__include@ @am__quote@lib/$(DEPDIR)/byteq.Po@am__quote@
3925-@AMDEP_TRUE@@am__include@ @am__quote@lib/$(DEPDIR)/cfm.Po@am__quote@
3926-@AMDEP_TRUE@@am__include@ @am__quote@lib/$(DEPDIR)/classifier.Po@am__quote@
3927-@AMDEP_TRUE@@am__include@ @am__quote@lib/$(DEPDIR)/command-line.Po@am__quote@
3928-@AMDEP_TRUE@@am__include@ @am__quote@lib/$(DEPDIR)/coverage.Po@am__quote@
3929-@AMDEP_TRUE@@am__include@ @am__quote@lib/$(DEPDIR)/csum.Po@am__quote@
3930-@AMDEP_TRUE@@am__include@ @am__quote@lib/$(DEPDIR)/daemon.Po@am__quote@
3931-@AMDEP_TRUE@@am__include@ @am__quote@lib/$(DEPDIR)/dhparams.Po@am__quote@
3932-@AMDEP_TRUE@@am__include@ @am__quote@lib/$(DEPDIR)/dirs.Po@am__quote@
3933-@AMDEP_TRUE@@am__include@ @am__quote@lib/$(DEPDIR)/dpif-linux.Po@am__quote@
3934-@AMDEP_TRUE@@am__include@ @am__quote@lib/$(DEPDIR)/dpif-netdev.Po@am__quote@
3935-@AMDEP_TRUE@@am__include@ @am__quote@lib/$(DEPDIR)/dpif.Po@am__quote@
3936-@AMDEP_TRUE@@am__include@ @am__quote@lib/$(DEPDIR)/dummy.Po@am__quote@
3937-@AMDEP_TRUE@@am__include@ @am__quote@lib/$(DEPDIR)/dynamic-string.Po@am__quote@
3938-@AMDEP_TRUE@@am__include@ @am__quote@lib/$(DEPDIR)/entropy.Po@am__quote@
3939-@AMDEP_TRUE@@am__include@ @am__quote@lib/$(DEPDIR)/fatal-signal.Po@am__quote@
3940-@AMDEP_TRUE@@am__include@ @am__quote@lib/$(DEPDIR)/flow.Po@am__quote@
3941-@AMDEP_TRUE@@am__include@ @am__quote@lib/$(DEPDIR)/hash.Po@am__quote@
3942-@AMDEP_TRUE@@am__include@ @am__quote@lib/$(DEPDIR)/hmap.Po@am__quote@
3943-@AMDEP_TRUE@@am__include@ @am__quote@lib/$(DEPDIR)/hmapx.Po@am__quote@
3944-@AMDEP_TRUE@@am__include@ @am__quote@lib/$(DEPDIR)/json.Po@am__quote@
3945-@AMDEP_TRUE@@am__include@ @am__quote@lib/$(DEPDIR)/jsonrpc.Po@am__quote@
3946-@AMDEP_TRUE@@am__include@ @am__quote@lib/$(DEPDIR)/lacp.Po@am__quote@
3947-@AMDEP_TRUE@@am__include@ @am__quote@lib/$(DEPDIR)/leak-checker.Po@am__quote@
3948-@AMDEP_TRUE@@am__include@ @am__quote@lib/$(DEPDIR)/learn.Po@am__quote@
3949-@AMDEP_TRUE@@am__include@ @am__quote@lib/$(DEPDIR)/learning-switch.Po@am__quote@
3950-@AMDEP_TRUE@@am__include@ @am__quote@lib/$(DEPDIR)/lib_libsflow_a-sflow_agent.Po@am__quote@
3951-@AMDEP_TRUE@@am__include@ @am__quote@lib/$(DEPDIR)/lib_libsflow_a-sflow_poller.Po@am__quote@
3952-@AMDEP_TRUE@@am__include@ @am__quote@lib/$(DEPDIR)/lib_libsflow_a-sflow_receiver.Po@am__quote@
3953-@AMDEP_TRUE@@am__include@ @am__quote@lib/$(DEPDIR)/lib_libsflow_a-sflow_sampler.Po@am__quote@
3954-@AMDEP_TRUE@@am__include@ @am__quote@lib/$(DEPDIR)/list.Po@am__quote@
3955-@AMDEP_TRUE@@am__include@ @am__quote@lib/$(DEPDIR)/lockfile.Po@am__quote@
3956-@AMDEP_TRUE@@am__include@ @am__quote@lib/$(DEPDIR)/mac-learning.Po@am__quote@
3957-@AMDEP_TRUE@@am__include@ @am__quote@lib/$(DEPDIR)/meta-flow.Po@am__quote@
3958-@AMDEP_TRUE@@am__include@ @am__quote@lib/$(DEPDIR)/multipath.Po@am__quote@
3959-@AMDEP_TRUE@@am__include@ @am__quote@lib/$(DEPDIR)/netdev-dummy.Po@am__quote@
3960-@AMDEP_TRUE@@am__include@ @am__quote@lib/$(DEPDIR)/netdev-linux.Po@am__quote@
3961-@AMDEP_TRUE@@am__include@ @am__quote@lib/$(DEPDIR)/netdev-vport.Po@am__quote@
3962-@AMDEP_TRUE@@am__include@ @am__quote@lib/$(DEPDIR)/netdev.Po@am__quote@
3963-@AMDEP_TRUE@@am__include@ @am__quote@lib/$(DEPDIR)/netlink-notifier.Po@am__quote@
3964-@AMDEP_TRUE@@am__include@ @am__quote@lib/$(DEPDIR)/netlink-socket.Po@am__quote@
3965-@AMDEP_TRUE@@am__include@ @am__quote@lib/$(DEPDIR)/netlink.Po@am__quote@
3966-@AMDEP_TRUE@@am__include@ @am__quote@lib/$(DEPDIR)/nx-match.Po@am__quote@
3967-@AMDEP_TRUE@@am__include@ @am__quote@lib/$(DEPDIR)/odp-util.Po@am__quote@
3968-@AMDEP_TRUE@@am__include@ @am__quote@lib/$(DEPDIR)/ofp-errors.Po@am__quote@
3969-@AMDEP_TRUE@@am__include@ @am__quote@lib/$(DEPDIR)/ofp-parse.Po@am__quote@
3970-@AMDEP_TRUE@@am__include@ @am__quote@lib/$(DEPDIR)/ofp-print.Po@am__quote@
3971-@AMDEP_TRUE@@am__include@ @am__quote@lib/$(DEPDIR)/ofp-util.Po@am__quote@
3972-@AMDEP_TRUE@@am__include@ @am__quote@lib/$(DEPDIR)/ofpbuf.Po@am__quote@
3973-@AMDEP_TRUE@@am__include@ @am__quote@lib/$(DEPDIR)/ovsdb-data.Po@am__quote@
3974-@AMDEP_TRUE@@am__include@ @am__quote@lib/$(DEPDIR)/ovsdb-error.Po@am__quote@
3975-@AMDEP_TRUE@@am__include@ @am__quote@lib/$(DEPDIR)/ovsdb-idl.Po@am__quote@
3976-@AMDEP_TRUE@@am__include@ @am__quote@lib/$(DEPDIR)/ovsdb-parser.Po@am__quote@
3977-@AMDEP_TRUE@@am__include@ @am__quote@lib/$(DEPDIR)/ovsdb-types.Po@am__quote@
3978-@AMDEP_TRUE@@am__include@ @am__quote@lib/$(DEPDIR)/packets.Po@am__quote@
3979-@AMDEP_TRUE@@am__include@ @am__quote@lib/$(DEPDIR)/pcap.Po@am__quote@
3980-@AMDEP_TRUE@@am__include@ @am__quote@lib/$(DEPDIR)/poll-loop.Po@am__quote@
3981-@AMDEP_TRUE@@am__include@ @am__quote@lib/$(DEPDIR)/process.Po@am__quote@
3982-@AMDEP_TRUE@@am__include@ @am__quote@lib/$(DEPDIR)/random.Po@am__quote@
3983-@AMDEP_TRUE@@am__include@ @am__quote@lib/$(DEPDIR)/rconn.Po@am__quote@
3984-@AMDEP_TRUE@@am__include@ @am__quote@lib/$(DEPDIR)/reconnect.Po@am__quote@
3985-@AMDEP_TRUE@@am__include@ @am__quote@lib/$(DEPDIR)/route-table.Po@am__quote@
3986-@AMDEP_TRUE@@am__include@ @am__quote@lib/$(DEPDIR)/rtnetlink-link.Po@am__quote@
3987-@AMDEP_TRUE@@am__include@ @am__quote@lib/$(DEPDIR)/sha1.Po@am__quote@
3988-@AMDEP_TRUE@@am__include@ @am__quote@lib/$(DEPDIR)/shash.Po@am__quote@
3989-@AMDEP_TRUE@@am__include@ @am__quote@lib/$(DEPDIR)/signals.Po@am__quote@
3990-@AMDEP_TRUE@@am__include@ @am__quote@lib/$(DEPDIR)/socket-util.Po@am__quote@
3991-@AMDEP_TRUE@@am__include@ @am__quote@lib/$(DEPDIR)/sort.Po@am__quote@
3992-@AMDEP_TRUE@@am__include@ @am__quote@lib/$(DEPDIR)/sset.Po@am__quote@
3993-@AMDEP_TRUE@@am__include@ @am__quote@lib/$(DEPDIR)/stp.Po@am__quote@
3994-@AMDEP_TRUE@@am__include@ @am__quote@lib/$(DEPDIR)/stream-fd.Po@am__quote@
3995-@AMDEP_TRUE@@am__include@ @am__quote@lib/$(DEPDIR)/stream-nossl.Po@am__quote@
3996-@AMDEP_TRUE@@am__include@ @am__quote@lib/$(DEPDIR)/stream-ssl.Po@am__quote@
3997-@AMDEP_TRUE@@am__include@ @am__quote@lib/$(DEPDIR)/stream-tcp.Po@am__quote@
3998-@AMDEP_TRUE@@am__include@ @am__quote@lib/$(DEPDIR)/stream-unix.Po@am__quote@
3999-@AMDEP_TRUE@@am__include@ @am__quote@lib/$(DEPDIR)/stream.Po@am__quote@
4000-@AMDEP_TRUE@@am__include@ @am__quote@lib/$(DEPDIR)/stress.Po@am__quote@
4001-@AMDEP_TRUE@@am__include@ @am__quote@lib/$(DEPDIR)/string.Po@am__quote@
4002-@AMDEP_TRUE@@am__include@ @am__quote@lib/$(DEPDIR)/svec.Po@am__quote@
4003-@AMDEP_TRUE@@am__include@ @am__quote@lib/$(DEPDIR)/table.Po@am__quote@
4004-@AMDEP_TRUE@@am__include@ @am__quote@lib/$(DEPDIR)/tag.Po@am__quote@
4005-@AMDEP_TRUE@@am__include@ @am__quote@lib/$(DEPDIR)/timer.Po@am__quote@
4006-@AMDEP_TRUE@@am__include@ @am__quote@lib/$(DEPDIR)/timeval.Po@am__quote@
4007-@AMDEP_TRUE@@am__include@ @am__quote@lib/$(DEPDIR)/unicode.Po@am__quote@
4008-@AMDEP_TRUE@@am__include@ @am__quote@lib/$(DEPDIR)/unixctl.Po@am__quote@
4009-@AMDEP_TRUE@@am__include@ @am__quote@lib/$(DEPDIR)/util.Po@am__quote@
4010-@AMDEP_TRUE@@am__include@ @am__quote@lib/$(DEPDIR)/uuid.Po@am__quote@
4011-@AMDEP_TRUE@@am__include@ @am__quote@lib/$(DEPDIR)/vconn-stream.Po@am__quote@
4012-@AMDEP_TRUE@@am__include@ @am__quote@lib/$(DEPDIR)/vconn.Po@am__quote@
4013-@AMDEP_TRUE@@am__include@ @am__quote@lib/$(DEPDIR)/vlan-bitmap.Po@am__quote@
4014-@AMDEP_TRUE@@am__include@ @am__quote@lib/$(DEPDIR)/vlandev.Po@am__quote@
4015-@AMDEP_TRUE@@am__include@ @am__quote@lib/$(DEPDIR)/vlog.Po@am__quote@
4016-@AMDEP_TRUE@@am__include@ @am__quote@ofproto/$(DEPDIR)/collectors.Po@am__quote@
4017-@AMDEP_TRUE@@am__include@ @am__quote@ofproto/$(DEPDIR)/connmgr.Po@am__quote@
4018-@AMDEP_TRUE@@am__include@ @am__quote@ofproto/$(DEPDIR)/fail-open.Po@am__quote@
4019-@AMDEP_TRUE@@am__include@ @am__quote@ofproto/$(DEPDIR)/in-band.Po@am__quote@
4020-@AMDEP_TRUE@@am__include@ @am__quote@ofproto/$(DEPDIR)/names.Po@am__quote@
4021-@AMDEP_TRUE@@am__include@ @am__quote@ofproto/$(DEPDIR)/netflow.Po@am__quote@
4022-@AMDEP_TRUE@@am__include@ @am__quote@ofproto/$(DEPDIR)/ofproto-dpif-sflow.Po@am__quote@
4023-@AMDEP_TRUE@@am__include@ @am__quote@ofproto/$(DEPDIR)/ofproto-dpif.Po@am__quote@
4024-@AMDEP_TRUE@@am__include@ @am__quote@ofproto/$(DEPDIR)/ofproto.Po@am__quote@
4025-@AMDEP_TRUE@@am__include@ @am__quote@ofproto/$(DEPDIR)/pinsched.Po@am__quote@
4026-@AMDEP_TRUE@@am__include@ @am__quote@ofproto/$(DEPDIR)/pktbuf.Po@am__quote@
4027-@AMDEP_TRUE@@am__include@ @am__quote@ovsdb/$(DEPDIR)/column.Po@am__quote@
4028-@AMDEP_TRUE@@am__include@ @am__quote@ovsdb/$(DEPDIR)/condition.Po@am__quote@
4029-@AMDEP_TRUE@@am__include@ @am__quote@ovsdb/$(DEPDIR)/execution.Po@am__quote@
4030-@AMDEP_TRUE@@am__include@ @am__quote@ovsdb/$(DEPDIR)/file.Po@am__quote@
4031-@AMDEP_TRUE@@am__include@ @am__quote@ovsdb/$(DEPDIR)/jsonrpc-server.Po@am__quote@
4032-@AMDEP_TRUE@@am__include@ @am__quote@ovsdb/$(DEPDIR)/log.Po@am__quote@
4033-@AMDEP_TRUE@@am__include@ @am__quote@ovsdb/$(DEPDIR)/mutation.Po@am__quote@
4034-@AMDEP_TRUE@@am__include@ @am__quote@ovsdb/$(DEPDIR)/ovsdb-client.Po@am__quote@
4035-@AMDEP_TRUE@@am__include@ @am__quote@ovsdb/$(DEPDIR)/ovsdb-server.Po@am__quote@
4036-@AMDEP_TRUE@@am__include@ @am__quote@ovsdb/$(DEPDIR)/ovsdb-tool.Po@am__quote@
4037-@AMDEP_TRUE@@am__include@ @am__quote@ovsdb/$(DEPDIR)/ovsdb.Po@am__quote@
4038-@AMDEP_TRUE@@am__include@ @am__quote@ovsdb/$(DEPDIR)/query.Po@am__quote@
4039-@AMDEP_TRUE@@am__include@ @am__quote@ovsdb/$(DEPDIR)/row.Po@am__quote@
4040-@AMDEP_TRUE@@am__include@ @am__quote@ovsdb/$(DEPDIR)/server.Po@am__quote@
4041-@AMDEP_TRUE@@am__include@ @am__quote@ovsdb/$(DEPDIR)/table.Po@am__quote@
4042-@AMDEP_TRUE@@am__include@ @am__quote@ovsdb/$(DEPDIR)/transaction.Po@am__quote@
4043-@AMDEP_TRUE@@am__include@ @am__quote@ovsdb/$(DEPDIR)/trigger.Po@am__quote@
4044-@AMDEP_TRUE@@am__include@ @am__quote@tests/$(DEPDIR)/idltest.Po@am__quote@
4045-@AMDEP_TRUE@@am__include@ @am__quote@tests/$(DEPDIR)/test-aes128.Po@am__quote@
4046-@AMDEP_TRUE@@am__include@ @am__quote@tests/$(DEPDIR)/test-bundle.Po@am__quote@
4047-@AMDEP_TRUE@@am__include@ @am__quote@tests/$(DEPDIR)/test-byte-order.Po@am__quote@
4048-@AMDEP_TRUE@@am__include@ @am__quote@tests/$(DEPDIR)/test-classifier.Po@am__quote@
4049-@AMDEP_TRUE@@am__include@ @am__quote@tests/$(DEPDIR)/test-csum.Po@am__quote@
4050-@AMDEP_TRUE@@am__include@ @am__quote@tests/$(DEPDIR)/test-file_name.Po@am__quote@
4051-@AMDEP_TRUE@@am__include@ @am__quote@tests/$(DEPDIR)/test-flows.Po@am__quote@
4052-@AMDEP_TRUE@@am__include@ @am__quote@tests/$(DEPDIR)/test-hash.Po@am__quote@
4053-@AMDEP_TRUE@@am__include@ @am__quote@tests/$(DEPDIR)/test-hmap.Po@am__quote@
4054-@AMDEP_TRUE@@am__include@ @am__quote@tests/$(DEPDIR)/test-json.Po@am__quote@
4055-@AMDEP_TRUE@@am__include@ @am__quote@tests/$(DEPDIR)/test-jsonrpc.Po@am__quote@
4056-@AMDEP_TRUE@@am__include@ @am__quote@tests/$(DEPDIR)/test-list.Po@am__quote@
4057-@AMDEP_TRUE@@am__include@ @am__quote@tests/$(DEPDIR)/test-lockfile.Po@am__quote@
4058-@AMDEP_TRUE@@am__include@ @am__quote@tests/$(DEPDIR)/test-multipath.Po@am__quote@
4059-@AMDEP_TRUE@@am__include@ @am__quote@tests/$(DEPDIR)/test-odp.Po@am__quote@
4060-@AMDEP_TRUE@@am__include@ @am__quote@tests/$(DEPDIR)/test-ovsdb.Po@am__quote@
4061-@AMDEP_TRUE@@am__include@ @am__quote@tests/$(DEPDIR)/test-packets.Po@am__quote@
4062-@AMDEP_TRUE@@am__include@ @am__quote@tests/$(DEPDIR)/test-random.Po@am__quote@
4063-@AMDEP_TRUE@@am__include@ @am__quote@tests/$(DEPDIR)/test-reconnect.Po@am__quote@
4064-@AMDEP_TRUE@@am__include@ @am__quote@tests/$(DEPDIR)/test-sha1.Po@am__quote@
4065-@AMDEP_TRUE@@am__include@ @am__quote@tests/$(DEPDIR)/test-stp.Po@am__quote@
4066-@AMDEP_TRUE@@am__include@ @am__quote@tests/$(DEPDIR)/test-strtok_r.Po@am__quote@
4067-@AMDEP_TRUE@@am__include@ @am__quote@tests/$(DEPDIR)/test-timeval.Po@am__quote@
4068-@AMDEP_TRUE@@am__include@ @am__quote@tests/$(DEPDIR)/test-type-props.Po@am__quote@
4069-@AMDEP_TRUE@@am__include@ @am__quote@tests/$(DEPDIR)/test-unix-socket.Po@am__quote@
4070-@AMDEP_TRUE@@am__include@ @am__quote@tests/$(DEPDIR)/test-util.Po@am__quote@
4071-@AMDEP_TRUE@@am__include@ @am__quote@tests/$(DEPDIR)/test-uuid.Po@am__quote@
4072-@AMDEP_TRUE@@am__include@ @am__quote@tests/$(DEPDIR)/test-vconn.Po@am__quote@
4073-@AMDEP_TRUE@@am__include@ @am__quote@utilities/$(DEPDIR)/nlmon.Po@am__quote@
4074-@AMDEP_TRUE@@am__include@ @am__quote@utilities/$(DEPDIR)/ovs-appctl.Po@am__quote@
4075-@AMDEP_TRUE@@am__include@ @am__quote@utilities/$(DEPDIR)/ovs-benchmark.Po@am__quote@
4076-@AMDEP_TRUE@@am__include@ @am__quote@utilities/$(DEPDIR)/ovs-controller.Po@am__quote@
4077-@AMDEP_TRUE@@am__include@ @am__quote@utilities/$(DEPDIR)/ovs-dpctl.Po@am__quote@
4078-@AMDEP_TRUE@@am__include@ @am__quote@utilities/$(DEPDIR)/ovs-ofctl.Po@am__quote@
4079-@AMDEP_TRUE@@am__include@ @am__quote@utilities/$(DEPDIR)/ovs-vlan-bug-workaround.Po@am__quote@
4080-@AMDEP_TRUE@@am__include@ @am__quote@utilities/$(DEPDIR)/ovs-vsctl.Po@am__quote@
4081-@AMDEP_TRUE@@am__include@ @am__quote@vswitchd/$(DEPDIR)/bridge.Po@am__quote@
4082-@AMDEP_TRUE@@am__include@ @am__quote@vswitchd/$(DEPDIR)/ovs-brcompatd.Po@am__quote@
4083-@AMDEP_TRUE@@am__include@ @am__quote@vswitchd/$(DEPDIR)/ovs-vswitchd.Po@am__quote@
4084-@AMDEP_TRUE@@am__include@ @am__quote@vswitchd/$(DEPDIR)/system-stats.Po@am__quote@
4085-@AMDEP_TRUE@@am__include@ @am__quote@vswitchd/$(DEPDIR)/vswitch-idl.Po@am__quote@
4086-@AMDEP_TRUE@@am__include@ @am__quote@vswitchd/$(DEPDIR)/xenserver.Po@am__quote@
4087-
4088-.c.o:
4089-@am__fastdepCC_TRUE@ depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.o$$||'`;\
4090-@am__fastdepCC_TRUE@ $(COMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ $< &&\
4091-@am__fastdepCC_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.Po
4092-@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
4093-@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
4094-@am__fastdepCC_FALSE@ $(COMPILE) -c -o $@ $<
4095-
4096-.c.obj:
4097-@am__fastdepCC_TRUE@ depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.obj$$||'`;\
4098-@am__fastdepCC_TRUE@ $(COMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ `$(CYGPATH_W) '$<'` &&\
4099-@am__fastdepCC_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.Po
4100-@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
4101-@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
4102-@am__fastdepCC_FALSE@ $(COMPILE) -c -o $@ `$(CYGPATH_W) '$<'`
4103-
4104-lib/lib_libsflow_a-sflow_agent.o: lib/sflow_agent.c
4105-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(lib_libsflow_a_CFLAGS) $(CFLAGS) -MT lib/lib_libsflow_a-sflow_agent.o -MD -MP -MF lib/$(DEPDIR)/lib_libsflow_a-sflow_agent.Tpo -c -o lib/lib_libsflow_a-sflow_agent.o `test -f 'lib/sflow_agent.c' || echo '$(srcdir)/'`lib/sflow_agent.c
4106-@am__fastdepCC_TRUE@ $(am__mv) lib/$(DEPDIR)/lib_libsflow_a-sflow_agent.Tpo lib/$(DEPDIR)/lib_libsflow_a-sflow_agent.Po
4107-@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='lib/sflow_agent.c' object='lib/lib_libsflow_a-sflow_agent.o' libtool=no @AMDEPBACKSLASH@
4108-@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
4109-@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(lib_libsflow_a_CFLAGS) $(CFLAGS) -c -o lib/lib_libsflow_a-sflow_agent.o `test -f 'lib/sflow_agent.c' || echo '$(srcdir)/'`lib/sflow_agent.c
4110-
4111-lib/lib_libsflow_a-sflow_agent.obj: lib/sflow_agent.c
4112-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(lib_libsflow_a_CFLAGS) $(CFLAGS) -MT lib/lib_libsflow_a-sflow_agent.obj -MD -MP -MF lib/$(DEPDIR)/lib_libsflow_a-sflow_agent.Tpo -c -o lib/lib_libsflow_a-sflow_agent.obj `if test -f 'lib/sflow_agent.c'; then $(CYGPATH_W) 'lib/sflow_agent.c'; else $(CYGPATH_W) '$(srcdir)/lib/sflow_agent.c'; fi`
4113-@am__fastdepCC_TRUE@ $(am__mv) lib/$(DEPDIR)/lib_libsflow_a-sflow_agent.Tpo lib/$(DEPDIR)/lib_libsflow_a-sflow_agent.Po
4114-@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='lib/sflow_agent.c' object='lib/lib_libsflow_a-sflow_agent.obj' libtool=no @AMDEPBACKSLASH@
4115-@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
4116-@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(lib_libsflow_a_CFLAGS) $(CFLAGS) -c -o lib/lib_libsflow_a-sflow_agent.obj `if test -f 'lib/sflow_agent.c'; then $(CYGPATH_W) 'lib/sflow_agent.c'; else $(CYGPATH_W) '$(srcdir)/lib/sflow_agent.c'; fi`
4117-
4118-lib/lib_libsflow_a-sflow_sampler.o: lib/sflow_sampler.c
4119-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(lib_libsflow_a_CFLAGS) $(CFLAGS) -MT lib/lib_libsflow_a-sflow_sampler.o -MD -MP -MF lib/$(DEPDIR)/lib_libsflow_a-sflow_sampler.Tpo -c -o lib/lib_libsflow_a-sflow_sampler.o `test -f 'lib/sflow_sampler.c' || echo '$(srcdir)/'`lib/sflow_sampler.c
4120-@am__fastdepCC_TRUE@ $(am__mv) lib/$(DEPDIR)/lib_libsflow_a-sflow_sampler.Tpo lib/$(DEPDIR)/lib_libsflow_a-sflow_sampler.Po
4121-@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='lib/sflow_sampler.c' object='lib/lib_libsflow_a-sflow_sampler.o' libtool=no @AMDEPBACKSLASH@
4122-@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
4123-@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(lib_libsflow_a_CFLAGS) $(CFLAGS) -c -o lib/lib_libsflow_a-sflow_sampler.o `test -f 'lib/sflow_sampler.c' || echo '$(srcdir)/'`lib/sflow_sampler.c
4124-
4125-lib/lib_libsflow_a-sflow_sampler.obj: lib/sflow_sampler.c
4126-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(lib_libsflow_a_CFLAGS) $(CFLAGS) -MT lib/lib_libsflow_a-sflow_sampler.obj -MD -MP -MF lib/$(DEPDIR)/lib_libsflow_a-sflow_sampler.Tpo -c -o lib/lib_libsflow_a-sflow_sampler.obj `if test -f 'lib/sflow_sampler.c'; then $(CYGPATH_W) 'lib/sflow_sampler.c'; else $(CYGPATH_W) '$(srcdir)/lib/sflow_sampler.c'; fi`
4127-@am__fastdepCC_TRUE@ $(am__mv) lib/$(DEPDIR)/lib_libsflow_a-sflow_sampler.Tpo lib/$(DEPDIR)/lib_libsflow_a-sflow_sampler.Po
4128-@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='lib/sflow_sampler.c' object='lib/lib_libsflow_a-sflow_sampler.obj' libtool=no @AMDEPBACKSLASH@
4129-@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
4130-@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(lib_libsflow_a_CFLAGS) $(CFLAGS) -c -o lib/lib_libsflow_a-sflow_sampler.obj `if test -f 'lib/sflow_sampler.c'; then $(CYGPATH_W) 'lib/sflow_sampler.c'; else $(CYGPATH_W) '$(srcdir)/lib/sflow_sampler.c'; fi`
4131-
4132-lib/lib_libsflow_a-sflow_poller.o: lib/sflow_poller.c
4133-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(lib_libsflow_a_CFLAGS) $(CFLAGS) -MT lib/lib_libsflow_a-sflow_poller.o -MD -MP -MF lib/$(DEPDIR)/lib_libsflow_a-sflow_poller.Tpo -c -o lib/lib_libsflow_a-sflow_poller.o `test -f 'lib/sflow_poller.c' || echo '$(srcdir)/'`lib/sflow_poller.c
4134-@am__fastdepCC_TRUE@ $(am__mv) lib/$(DEPDIR)/lib_libsflow_a-sflow_poller.Tpo lib/$(DEPDIR)/lib_libsflow_a-sflow_poller.Po
4135-@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='lib/sflow_poller.c' object='lib/lib_libsflow_a-sflow_poller.o' libtool=no @AMDEPBACKSLASH@
4136-@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
4137-@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(lib_libsflow_a_CFLAGS) $(CFLAGS) -c -o lib/lib_libsflow_a-sflow_poller.o `test -f 'lib/sflow_poller.c' || echo '$(srcdir)/'`lib/sflow_poller.c
4138-
4139-lib/lib_libsflow_a-sflow_poller.obj: lib/sflow_poller.c
4140-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(lib_libsflow_a_CFLAGS) $(CFLAGS) -MT lib/lib_libsflow_a-sflow_poller.obj -MD -MP -MF lib/$(DEPDIR)/lib_libsflow_a-sflow_poller.Tpo -c -o lib/lib_libsflow_a-sflow_poller.obj `if test -f 'lib/sflow_poller.c'; then $(CYGPATH_W) 'lib/sflow_poller.c'; else $(CYGPATH_W) '$(srcdir)/lib/sflow_poller.c'; fi`
4141-@am__fastdepCC_TRUE@ $(am__mv) lib/$(DEPDIR)/lib_libsflow_a-sflow_poller.Tpo lib/$(DEPDIR)/lib_libsflow_a-sflow_poller.Po
4142-@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='lib/sflow_poller.c' object='lib/lib_libsflow_a-sflow_poller.obj' libtool=no @AMDEPBACKSLASH@
4143-@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
4144-@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(lib_libsflow_a_CFLAGS) $(CFLAGS) -c -o lib/lib_libsflow_a-sflow_poller.obj `if test -f 'lib/sflow_poller.c'; then $(CYGPATH_W) 'lib/sflow_poller.c'; else $(CYGPATH_W) '$(srcdir)/lib/sflow_poller.c'; fi`
4145-
4146-lib/lib_libsflow_a-sflow_receiver.o: lib/sflow_receiver.c
4147-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(lib_libsflow_a_CFLAGS) $(CFLAGS) -MT lib/lib_libsflow_a-sflow_receiver.o -MD -MP -MF lib/$(DEPDIR)/lib_libsflow_a-sflow_receiver.Tpo -c -o lib/lib_libsflow_a-sflow_receiver.o `test -f 'lib/sflow_receiver.c' || echo '$(srcdir)/'`lib/sflow_receiver.c
4148-@am__fastdepCC_TRUE@ $(am__mv) lib/$(DEPDIR)/lib_libsflow_a-sflow_receiver.Tpo lib/$(DEPDIR)/lib_libsflow_a-sflow_receiver.Po
4149-@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='lib/sflow_receiver.c' object='lib/lib_libsflow_a-sflow_receiver.o' libtool=no @AMDEPBACKSLASH@
4150-@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
4151-@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(lib_libsflow_a_CFLAGS) $(CFLAGS) -c -o lib/lib_libsflow_a-sflow_receiver.o `test -f 'lib/sflow_receiver.c' || echo '$(srcdir)/'`lib/sflow_receiver.c
4152-
4153-lib/lib_libsflow_a-sflow_receiver.obj: lib/sflow_receiver.c
4154-@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(lib_libsflow_a_CFLAGS) $(CFLAGS) -MT lib/lib_libsflow_a-sflow_receiver.obj -MD -MP -MF lib/$(DEPDIR)/lib_libsflow_a-sflow_receiver.Tpo -c -o lib/lib_libsflow_a-sflow_receiver.obj `if test -f 'lib/sflow_receiver.c'; then $(CYGPATH_W) 'lib/sflow_receiver.c'; else $(CYGPATH_W) '$(srcdir)/lib/sflow_receiver.c'; fi`
4155-@am__fastdepCC_TRUE@ $(am__mv) lib/$(DEPDIR)/lib_libsflow_a-sflow_receiver.Tpo lib/$(DEPDIR)/lib_libsflow_a-sflow_receiver.Po
4156-@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='lib/sflow_receiver.c' object='lib/lib_libsflow_a-sflow_receiver.obj' libtool=no @AMDEPBACKSLASH@
4157-@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
4158-@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(lib_libsflow_a_CFLAGS) $(CFLAGS) -c -o lib/lib_libsflow_a-sflow_receiver.obj `if test -f 'lib/sflow_receiver.c'; then $(CYGPATH_W) 'lib/sflow_receiver.c'; else $(CYGPATH_W) '$(srcdir)/lib/sflow_receiver.c'; fi`
4159-install-man1: $(dist_man_MANS) $(man_MANS)
4160- @$(NORMAL_INSTALL)
4161- test -z "$(man1dir)" || $(MKDIR_P) "$(DESTDIR)$(man1dir)"
4162- @list=''; test -n "$(man1dir)" || exit 0; \
4163- { for i in $$list; do echo "$$i"; done; \
4164- l2='$(dist_man_MANS) $(man_MANS)'; for i in $$l2; do echo "$$i"; done | \
4165- sed -n '/\.1[a-z]*$$/p'; \
4166- } | while read p; do \
4167- if test -f $$p; then d=; else d="$(srcdir)/"; fi; \
4168- echo "$$d$$p"; echo "$$p"; \
4169- done | \
4170- sed -e 'n;s,.*/,,;p;h;s,.*\.,,;s,^[^1][0-9a-z]*$$,1,;x' \
4171- -e 's,\.[0-9a-z]*$$,,;$(transform);G;s,\n,.,' | \
4172- sed 'N;N;s,\n, ,g' | { \
4173- list=; while read file base inst; do \
4174- if test "$$base" = "$$inst"; then list="$$list $$file"; else \
4175- echo " $(INSTALL_DATA) '$$file' '$(DESTDIR)$(man1dir)/$$inst'"; \
4176- $(INSTALL_DATA) "$$file" "$(DESTDIR)$(man1dir)/$$inst" || exit $$?; \
4177- fi; \
4178- done; \
4179- for i in $$list; do echo "$$i"; done | $(am__base_list) | \
4180- while read files; do \
4181- test -z "$$files" || { \
4182- echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(man1dir)'"; \
4183- $(INSTALL_DATA) $$files "$(DESTDIR)$(man1dir)" || exit $$?; }; \
4184- done; }
4185-
4186-uninstall-man1:
4187- @$(NORMAL_UNINSTALL)
4188- @list=''; test -n "$(man1dir)" || exit 0; \
4189- files=`{ for i in $$list; do echo "$$i"; done; \
4190- l2='$(dist_man_MANS) $(man_MANS)'; for i in $$l2; do echo "$$i"; done | \
4191- sed -n '/\.1[a-z]*$$/p'; \
4192- } | sed -e 's,.*/,,;h;s,.*\.,,;s,^[^1][0-9a-z]*$$,1,;x' \
4193- -e 's,\.[0-9a-z]*$$,,;$(transform);G;s,\n,.,'`; \
4194- test -z "$$files" || { \
4195- echo " ( cd '$(DESTDIR)$(man1dir)' && rm -f" $$files ")"; \
4196- cd "$(DESTDIR)$(man1dir)" && rm -f $$files; }
4197-install-man5: $(dist_man_MANS) $(man_MANS)
4198- @$(NORMAL_INSTALL)
4199- test -z "$(man5dir)" || $(MKDIR_P) "$(DESTDIR)$(man5dir)"
4200- @list=''; test -n "$(man5dir)" || exit 0; \
4201- { for i in $$list; do echo "$$i"; done; \
4202- l2='$(dist_man_MANS) $(man_MANS)'; for i in $$l2; do echo "$$i"; done | \
4203- sed -n '/\.5[a-z]*$$/p'; \
4204- } | while read p; do \
4205- if test -f $$p; then d=; else d="$(srcdir)/"; fi; \
4206- echo "$$d$$p"; echo "$$p"; \
4207- done | \
4208- sed -e 'n;s,.*/,,;p;h;s,.*\.,,;s,^[^5][0-9a-z]*$$,5,;x' \
4209- -e 's,\.[0-9a-z]*$$,,;$(transform);G;s,\n,.,' | \
4210- sed 'N;N;s,\n, ,g' | { \
4211- list=; while read file base inst; do \
4212- if test "$$base" = "$$inst"; then list="$$list $$file"; else \
4213- echo " $(INSTALL_DATA) '$$file' '$(DESTDIR)$(man5dir)/$$inst'"; \
4214- $(INSTALL_DATA) "$$file" "$(DESTDIR)$(man5dir)/$$inst" || exit $$?; \
4215- fi; \
4216- done; \
4217- for i in $$list; do echo "$$i"; done | $(am__base_list) | \
4218- while read files; do \
4219- test -z "$$files" || { \
4220- echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(man5dir)'"; \
4221- $(INSTALL_DATA) $$files "$(DESTDIR)$(man5dir)" || exit $$?; }; \
4222- done; }
4223-
4224-uninstall-man5:
4225- @$(NORMAL_UNINSTALL)
4226- @list=''; test -n "$(man5dir)" || exit 0; \
4227- files=`{ for i in $$list; do echo "$$i"; done; \
4228- l2='$(dist_man_MANS) $(man_MANS)'; for i in $$l2; do echo "$$i"; done | \
4229- sed -n '/\.5[a-z]*$$/p'; \
4230- } | sed -e 's,.*/,,;h;s,.*\.,,;s,^[^5][0-9a-z]*$$,5,;x' \
4231- -e 's,\.[0-9a-z]*$$,,;$(transform);G;s,\n,.,'`; \
4232- test -z "$$files" || { \
4233- echo " ( cd '$(DESTDIR)$(man5dir)' && rm -f" $$files ")"; \
4234- cd "$(DESTDIR)$(man5dir)" && rm -f $$files; }
4235-install-man8: $(dist_man_MANS) $(man_MANS)
4236- @$(NORMAL_INSTALL)
4237- test -z "$(man8dir)" || $(MKDIR_P) "$(DESTDIR)$(man8dir)"
4238- @list=''; test -n "$(man8dir)" || exit 0; \
4239- { for i in $$list; do echo "$$i"; done; \
4240- l2='$(dist_man_MANS) $(man_MANS)'; for i in $$l2; do echo "$$i"; done | \
4241- sed -n '/\.8[a-z]*$$/p'; \
4242- } | while read p; do \
4243- if test -f $$p; then d=; else d="$(srcdir)/"; fi; \
4244- echo "$$d$$p"; echo "$$p"; \
4245- done | \
4246- sed -e 'n;s,.*/,,;p;h;s,.*\.,,;s,^[^8][0-9a-z]*$$,8,;x' \
4247- -e 's,\.[0-9a-z]*$$,,;$(transform);G;s,\n,.,' | \
4248- sed 'N;N;s,\n, ,g' | { \
4249- list=; while read file base inst; do \
4250- if test "$$base" = "$$inst"; then list="$$list $$file"; else \
4251- echo " $(INSTALL_DATA) '$$file' '$(DESTDIR)$(man8dir)/$$inst'"; \
4252- $(INSTALL_DATA) "$$file" "$(DESTDIR)$(man8dir)/$$inst" || exit $$?; \
4253- fi; \
4254- done; \
4255- for i in $$list; do echo "$$i"; done | $(am__base_list) | \
4256- while read files; do \
4257- test -z "$$files" || { \
4258- echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(man8dir)'"; \
4259- $(INSTALL_DATA) $$files "$(DESTDIR)$(man8dir)" || exit $$?; }; \
4260- done; }
4261-
4262-uninstall-man8:
4263- @$(NORMAL_UNINSTALL)
4264- @list=''; test -n "$(man8dir)" || exit 0; \
4265- files=`{ for i in $$list; do echo "$$i"; done; \
4266- l2='$(dist_man_MANS) $(man_MANS)'; for i in $$l2; do echo "$$i"; done | \
4267- sed -n '/\.8[a-z]*$$/p'; \
4268- } | sed -e 's,.*/,,;h;s,.*\.,,;s,^[^8][0-9a-z]*$$,8,;x' \
4269- -e 's,\.[0-9a-z]*$$,,;$(transform);G;s,\n,.,'`; \
4270- test -z "$$files" || { \
4271- echo " ( cd '$(DESTDIR)$(man8dir)' && rm -f" $$files ")"; \
4272- cd "$(DESTDIR)$(man8dir)" && rm -f $$files; }
4273-install-dist_pkgdataDATA: $(dist_pkgdata_DATA)
4274- @$(NORMAL_INSTALL)
4275- test -z "$(pkgdatadir)" || $(MKDIR_P) "$(DESTDIR)$(pkgdatadir)"
4276- @list='$(dist_pkgdata_DATA)'; test -n "$(pkgdatadir)" || list=; \
4277- for p in $$list; do \
4278- if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \
4279- echo "$$d$$p"; \
4280- done | $(am__base_list) | \
4281- while read files; do \
4282- echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(pkgdatadir)'"; \
4283- $(INSTALL_DATA) $$files "$(DESTDIR)$(pkgdatadir)" || exit $$?; \
4284- done
4285-
4286-uninstall-dist_pkgdataDATA:
4287- @$(NORMAL_UNINSTALL)
4288- @list='$(dist_pkgdata_DATA)'; test -n "$(pkgdatadir)" || list=; \
4289- files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \
4290- test -n "$$files" || exit 0; \
4291- echo " ( cd '$(DESTDIR)$(pkgdatadir)' && rm -f" $$files ")"; \
4292- cd "$(DESTDIR)$(pkgdatadir)" && rm -f $$files
4293-install-dist_scriptsDATA: $(dist_scripts_DATA)
4294- @$(NORMAL_INSTALL)
4295- test -z "$(scriptsdir)" || $(MKDIR_P) "$(DESTDIR)$(scriptsdir)"
4296- @list='$(dist_scripts_DATA)'; test -n "$(scriptsdir)" || list=; \
4297- for p in $$list; do \
4298- if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \
4299- echo "$$d$$p"; \
4300- done | $(am__base_list) | \
4301- while read files; do \
4302- echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(scriptsdir)'"; \
4303- $(INSTALL_DATA) $$files "$(DESTDIR)$(scriptsdir)" || exit $$?; \
4304- done
4305-
4306-uninstall-dist_scriptsDATA:
4307- @$(NORMAL_UNINSTALL)
4308- @list='$(dist_scripts_DATA)'; test -n "$(scriptsdir)" || list=; \
4309- files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \
4310- test -n "$$files" || exit 0; \
4311- echo " ( cd '$(DESTDIR)$(scriptsdir)' && rm -f" $$files ")"; \
4312- cd "$(DESTDIR)$(scriptsdir)" && rm -f $$files
4313-install-nobase_pkgdataDATA: $(nobase_pkgdata_DATA)
4314- @$(NORMAL_INSTALL)
4315- test -z "$(pkgdatadir)" || $(MKDIR_P) "$(DESTDIR)$(pkgdatadir)"
4316- @list='$(nobase_pkgdata_DATA)'; test -n "$(pkgdatadir)" || list=; \
4317- $(am__nobase_list) | while read dir files; do \
4318- xfiles=; for file in $$files; do \
4319- if test -f "$$file"; then xfiles="$$xfiles $$file"; \
4320- else xfiles="$$xfiles $(srcdir)/$$file"; fi; done; \
4321- test -z "$$xfiles" || { \
4322- test "x$$dir" = x. || { \
4323- echo "$(MKDIR_P) '$(DESTDIR)$(pkgdatadir)/$$dir'"; \
4324- $(MKDIR_P) "$(DESTDIR)$(pkgdatadir)/$$dir"; }; \
4325- echo " $(INSTALL_DATA) $$xfiles '$(DESTDIR)$(pkgdatadir)/$$dir'"; \
4326- $(INSTALL_DATA) $$xfiles "$(DESTDIR)$(pkgdatadir)/$$dir" || exit $$?; }; \
4327- done
4328-
4329-uninstall-nobase_pkgdataDATA:
4330- @$(NORMAL_UNINSTALL)
4331- @list='$(nobase_pkgdata_DATA)'; test -n "$(pkgdatadir)" || list=; \
4332- $(am__nobase_strip_setup); files=`$(am__nobase_strip)`; \
4333- test -n "$$files" || exit 0; \
4334- echo " ( cd '$(DESTDIR)$(pkgdatadir)' && rm -f" $$files ")"; \
4335- cd "$(DESTDIR)$(pkgdatadir)" && rm -f $$files
4336-install-ovsdbmonitorDATA: $(ovsdbmonitor_DATA)
4337- @$(NORMAL_INSTALL)
4338- test -z "$(ovsdbmonitordir)" || $(MKDIR_P) "$(DESTDIR)$(ovsdbmonitordir)"
4339- @list='$(ovsdbmonitor_DATA)'; test -n "$(ovsdbmonitordir)" || list=; \
4340- for p in $$list; do \
4341- if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \
4342- echo "$$d$$p"; \
4343- done | $(am__base_list) | \
4344- while read files; do \
4345- echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(ovsdbmonitordir)'"; \
4346- $(INSTALL_DATA) $$files "$(DESTDIR)$(ovsdbmonitordir)" || exit $$?; \
4347- done
4348-
4349-uninstall-ovsdbmonitorDATA:
4350- @$(NORMAL_UNINSTALL)
4351- @list='$(ovsdbmonitor_DATA)'; test -n "$(ovsdbmonitordir)" || list=; \
4352- files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \
4353- test -n "$$files" || exit 0; \
4354- echo " ( cd '$(DESTDIR)$(ovsdbmonitordir)' && rm -f" $$files ")"; \
4355- cd "$(DESTDIR)$(ovsdbmonitordir)" && rm -f $$files
4356-install-pkgdataDATA: $(pkgdata_DATA)
4357- @$(NORMAL_INSTALL)
4358- test -z "$(pkgdatadir)" || $(MKDIR_P) "$(DESTDIR)$(pkgdatadir)"
4359- @list='$(pkgdata_DATA)'; test -n "$(pkgdatadir)" || list=; \
4360- for p in $$list; do \
4361- if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \
4362- echo "$$d$$p"; \
4363- done | $(am__base_list) | \
4364- while read files; do \
4365- echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(pkgdatadir)'"; \
4366- $(INSTALL_DATA) $$files "$(DESTDIR)$(pkgdatadir)" || exit $$?; \
4367- done
4368-
4369-uninstall-pkgdataDATA:
4370- @$(NORMAL_UNINSTALL)
4371- @list='$(pkgdata_DATA)'; test -n "$(pkgdatadir)" || list=; \
4372- files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \
4373- test -n "$$files" || exit 0; \
4374- echo " ( cd '$(DESTDIR)$(pkgdatadir)' && rm -f" $$files ")"; \
4375- cd "$(DESTDIR)$(pkgdatadir)" && rm -f $$files
4376-install-scriptsDATA: $(scripts_DATA)
4377- @$(NORMAL_INSTALL)
4378- test -z "$(scriptsdir)" || $(MKDIR_P) "$(DESTDIR)$(scriptsdir)"
4379- @list='$(scripts_DATA)'; test -n "$(scriptsdir)" || list=; \
4380- for p in $$list; do \
4381- if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \
4382- echo "$$d$$p"; \
4383- done | $(am__base_list) | \
4384- while read files; do \
4385- echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(scriptsdir)'"; \
4386- $(INSTALL_DATA) $$files "$(DESTDIR)$(scriptsdir)" || exit $$?; \
4387- done
4388-
4389-uninstall-scriptsDATA:
4390- @$(NORMAL_UNINSTALL)
4391- @list='$(scripts_DATA)'; test -n "$(scriptsdir)" || list=; \
4392- files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \
4393- test -n "$$files" || exit 0; \
4394- echo " ( cd '$(DESTDIR)$(scriptsdir)' && rm -f" $$files ")"; \
4395- cd "$(DESTDIR)$(scriptsdir)" && rm -f $$files
4396-
4397-# This directory's subdirectories are mostly independent; you can cd
4398-# into them and run `make' without going through this Makefile.
4399-# To change the values of `make' variables: instead of editing Makefiles,
4400-# (1) if the variable is set in `config.status', edit `config.status'
4401-# (which will cause the Makefiles to be regenerated when you run `make');
4402-# (2) otherwise, pass the desired values on the `make' command line.
4403-$(RECURSIVE_TARGETS):
4404- @fail= failcom='exit 1'; \
4405- for f in x $$MAKEFLAGS; do \
4406- case $$f in \
4407- *=* | --[!k]*);; \
4408- *k*) failcom='fail=yes';; \
4409- esac; \
4410- done; \
4411- dot_seen=no; \
4412- target=`echo $@ | sed s/-recursive//`; \
4413- list='$(SUBDIRS)'; for subdir in $$list; do \
4414- echo "Making $$target in $$subdir"; \
4415- if test "$$subdir" = "."; then \
4416- dot_seen=yes; \
4417- local_target="$$target-am"; \
4418- else \
4419- local_target="$$target"; \
4420- fi; \
4421- ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \
4422- || eval $$failcom; \
4423- done; \
4424- if test "$$dot_seen" = "no"; then \
4425- $(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \
4426- fi; test -z "$$fail"
4427-
4428-$(RECURSIVE_CLEAN_TARGETS):
4429- @fail= failcom='exit 1'; \
4430- for f in x $$MAKEFLAGS; do \
4431- case $$f in \
4432- *=* | --[!k]*);; \
4433- *k*) failcom='fail=yes';; \
4434- esac; \
4435- done; \
4436- dot_seen=no; \
4437- case "$@" in \
4438- distclean-* | maintainer-clean-*) list='$(DIST_SUBDIRS)' ;; \
4439- *) list='$(SUBDIRS)' ;; \
4440- esac; \
4441- rev=''; for subdir in $$list; do \
4442- if test "$$subdir" = "."; then :; else \
4443- rev="$$subdir $$rev"; \
4444- fi; \
4445- done; \
4446- rev="$$rev ."; \
4447- target=`echo $@ | sed s/-recursive//`; \
4448- for subdir in $$rev; do \
4449- echo "Making $$target in $$subdir"; \
4450- if test "$$subdir" = "."; then \
4451- local_target="$$target-am"; \
4452- else \
4453- local_target="$$target"; \
4454- fi; \
4455- ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \
4456- || eval $$failcom; \
4457- done && test -z "$$fail"
4458-tags-recursive:
4459- list='$(SUBDIRS)'; for subdir in $$list; do \
4460- test "$$subdir" = . || ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) tags); \
4461- done
4462-ctags-recursive:
4463- list='$(SUBDIRS)'; for subdir in $$list; do \
4464- test "$$subdir" = . || ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) ctags); \
4465- done
4466-
4467-ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES)
4468- list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \
4469- unique=`for i in $$list; do \
4470- if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
4471- done | \
4472- $(AWK) '{ files[$$0] = 1; nonempty = 1; } \
4473- END { if (nonempty) { for (i in files) print i; }; }'`; \
4474- mkid -fID $$unique
4475-tags: TAGS
4476-
4477-TAGS: tags-recursive $(HEADERS) $(SOURCES) config.h.in $(TAGS_DEPENDENCIES) \
4478- $(TAGS_FILES) $(LISP)
4479- set x; \
4480- here=`pwd`; \
4481- if ($(ETAGS) --etags-include --version) >/dev/null 2>&1; then \
4482- include_option=--etags-include; \
4483- empty_fix=.; \
4484- else \
4485- include_option=--include; \
4486- empty_fix=; \
4487- fi; \
4488- list='$(SUBDIRS)'; for subdir in $$list; do \
4489- if test "$$subdir" = .; then :; else \
4490- test ! -f $$subdir/TAGS || \
4491- set "$$@" "$$include_option=$$here/$$subdir/TAGS"; \
4492- fi; \
4493- done; \
4494- list='$(SOURCES) $(HEADERS) config.h.in $(LISP) $(TAGS_FILES)'; \
4495- unique=`for i in $$list; do \
4496- if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
4497- done | \
4498- $(AWK) '{ files[$$0] = 1; nonempty = 1; } \
4499- END { if (nonempty) { for (i in files) print i; }; }'`; \
4500- shift; \
4501- if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \
4502- test -n "$$unique" || unique=$$empty_fix; \
4503- if test $$# -gt 0; then \
4504- $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
4505- "$$@" $$unique; \
4506- else \
4507- $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
4508- $$unique; \
4509- fi; \
4510- fi
4511-ctags: CTAGS
4512-CTAGS: ctags-recursive $(HEADERS) $(SOURCES) config.h.in $(TAGS_DEPENDENCIES) \
4513- $(TAGS_FILES) $(LISP)
4514- list='$(SOURCES) $(HEADERS) config.h.in $(LISP) $(TAGS_FILES)'; \
4515- unique=`for i in $$list; do \
4516- if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
4517- done | \
4518- $(AWK) '{ files[$$0] = 1; nonempty = 1; } \
4519- END { if (nonempty) { for (i in files) print i; }; }'`; \
4520- test -z "$(CTAGS_ARGS)$$unique" \
4521- || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \
4522- $$unique
4523-
4524-GTAGS:
4525- here=`$(am__cd) $(top_builddir) && pwd` \
4526- && $(am__cd) $(top_srcdir) \
4527- && gtags -i $(GTAGS_ARGS) "$$here"
4528-
4529-distclean-tags:
4530- -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
4531-
4532-distdir: $(DISTFILES)
4533- @list='$(MANS)'; if test -n "$$list"; then \
4534- list=`for p in $$list; do \
4535- if test -f $$p; then d=; else d="$(srcdir)/"; fi; \
4536- if test -f "$$d$$p"; then echo "$$d$$p"; else :; fi; done`; \
4537- if test -n "$$list" && \
4538- grep 'ab help2man is required to generate this page' $$list >/dev/null; then \
4539- echo "error: found man pages containing the \`missing help2man' replacement text:" >&2; \
4540- grep -l 'ab help2man is required to generate this page' $$list | sed 's/^/ /' >&2; \
4541- echo " to fix them, install help2man, remove and regenerate the man pages;" >&2; \
4542- echo " typically \`make maintainer-clean' will remove them" >&2; \
4543- exit 1; \
4544- else :; fi; \
4545- else :; fi
4546- $(am__remove_distdir)
4547- test -d "$(distdir)" || mkdir "$(distdir)"
4548- @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
4549- topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
4550- list='$(DISTFILES)'; \
4551- dist_files=`for file in $$list; do echo $$file; done | \
4552- sed -e "s|^$$srcdirstrip/||;t" \
4553- -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \
4554- case $$dist_files in \
4555- */*) $(MKDIR_P) `echo "$$dist_files" | \
4556- sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \
4557- sort -u` ;; \
4558- esac; \
4559- for file in $$dist_files; do \
4560- if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \
4561- if test -d $$d/$$file; then \
4562- dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \
4563- if test -d "$(distdir)/$$file"; then \
4564- find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
4565- fi; \
4566- if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \
4567- cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \
4568- find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
4569- fi; \
4570- cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \
4571- else \
4572- test -f "$(distdir)/$$file" \
4573- || cp -p $$d/$$file "$(distdir)/$$file" \
4574- || exit 1; \
4575- fi; \
4576- done
4577- @list='$(DIST_SUBDIRS)'; for subdir in $$list; do \
4578- if test "$$subdir" = .; then :; else \
4579- test -d "$(distdir)/$$subdir" \
4580- || $(MKDIR_P) "$(distdir)/$$subdir" \
4581- || exit 1; \
4582- fi; \
4583- done
4584- @list='$(DIST_SUBDIRS)'; for subdir in $$list; do \
4585- if test "$$subdir" = .; then :; else \
4586- dir1=$$subdir; dir2="$(distdir)/$$subdir"; \
4587- $(am__relativize); \
4588- new_distdir=$$reldir; \
4589- dir1=$$subdir; dir2="$(top_distdir)"; \
4590- $(am__relativize); \
4591- new_top_distdir=$$reldir; \
4592- echo " (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) top_distdir="$$new_top_distdir" distdir="$$new_distdir" \\"; \
4593- echo " am__remove_distdir=: am__skip_length_check=: am__skip_mode_fix=: distdir)"; \
4594- ($(am__cd) $$subdir && \
4595- $(MAKE) $(AM_MAKEFLAGS) \
4596- top_distdir="$$new_top_distdir" \
4597- distdir="$$new_distdir" \
4598- am__remove_distdir=: \
4599- am__skip_length_check=: \
4600- am__skip_mode_fix=: \
4601- distdir) \
4602- || exit 1; \
4603- fi; \
4604- done
4605- $(MAKE) $(AM_MAKEFLAGS) \
4606- top_distdir="$(top_distdir)" distdir="$(distdir)" \
4607- dist-hook
4608- -test -n "$(am__skip_mode_fix)" \
4609- || find "$(distdir)" -type d ! -perm -755 \
4610- -exec chmod u+rwx,go+rx {} \; -o \
4611- ! -type d ! -perm -444 -links 1 -exec chmod a+r {} \; -o \
4612- ! -type d ! -perm -400 -exec chmod a+r {} \; -o \
4613- ! -type d ! -perm -444 -exec $(install_sh) -c -m a+r {} {} \; \
4614- || chmod -R a+r "$(distdir)"
4615-dist-gzip: distdir
4616- tardir=$(distdir) && $(am__tar) | GZIP=$(GZIP_ENV) gzip -c >$(distdir).tar.gz
4617- $(am__remove_distdir)
4618-
4619-dist-bzip2: distdir
4620- tardir=$(distdir) && $(am__tar) | bzip2 -9 -c >$(distdir).tar.bz2
4621- $(am__remove_distdir)
4622-
4623-dist-lzma: distdir
4624- tardir=$(distdir) && $(am__tar) | lzma -9 -c >$(distdir).tar.lzma
4625- $(am__remove_distdir)
4626-
4627-dist-xz: distdir
4628- tardir=$(distdir) && $(am__tar) | xz -c >$(distdir).tar.xz
4629- $(am__remove_distdir)
4630-
4631-dist-tarZ: distdir
4632- tardir=$(distdir) && $(am__tar) | compress -c >$(distdir).tar.Z
4633- $(am__remove_distdir)
4634-
4635-dist-shar: distdir
4636- shar $(distdir) | GZIP=$(GZIP_ENV) gzip -c >$(distdir).shar.gz
4637- $(am__remove_distdir)
4638-
4639-dist-zip: distdir
4640- -rm -f $(distdir).zip
4641- zip -rq $(distdir).zip $(distdir)
4642- $(am__remove_distdir)
4643-
4644-dist dist-all: distdir
4645- tardir=$(distdir) && $(am__tar) | GZIP=$(GZIP_ENV) gzip -c >$(distdir).tar.gz
4646- $(am__remove_distdir)
4647-
4648-# This target untars the dist file and tries a VPATH configuration. Then
4649-# it guarantees that the distribution is self-contained by making another
4650-# tarfile.
4651-distcheck: dist
4652- case '$(DIST_ARCHIVES)' in \
4653- *.tar.gz*) \
4654- GZIP=$(GZIP_ENV) gzip -dc $(distdir).tar.gz | $(am__untar) ;;\
4655- *.tar.bz2*) \
4656- bzip2 -dc $(distdir).tar.bz2 | $(am__untar) ;;\
4657- *.tar.lzma*) \
4658- lzma -dc $(distdir).tar.lzma | $(am__untar) ;;\
4659- *.tar.xz*) \
4660- xz -dc $(distdir).tar.xz | $(am__untar) ;;\
4661- *.tar.Z*) \
4662- uncompress -c $(distdir).tar.Z | $(am__untar) ;;\
4663- *.shar.gz*) \
4664- GZIP=$(GZIP_ENV) gzip -dc $(distdir).shar.gz | unshar ;;\
4665- *.zip*) \
4666- unzip $(distdir).zip ;;\
4667- esac
4668- chmod -R a-w $(distdir); chmod a+w $(distdir)
4669- mkdir $(distdir)/_build
4670- mkdir $(distdir)/_inst
4671- chmod a-w $(distdir)
4672- test -d $(distdir)/_build || exit 0; \
4673- dc_install_base=`$(am__cd) $(distdir)/_inst && pwd | sed -e 's,^[^:\\/]:[\\/],/,'` \
4674- && dc_destdir="$${TMPDIR-/tmp}/am-dc-$$$$/" \
4675- && am__cwd=`pwd` \
4676- && $(am__cd) $(distdir)/_build \
4677- && ../configure --srcdir=.. --prefix="$$dc_install_base" \
4678- $(DISTCHECK_CONFIGURE_FLAGS) \
4679- && $(MAKE) $(AM_MAKEFLAGS) \
4680- && $(MAKE) $(AM_MAKEFLAGS) dvi \
4681- && $(MAKE) $(AM_MAKEFLAGS) check \
4682- && $(MAKE) $(AM_MAKEFLAGS) install \
4683- && $(MAKE) $(AM_MAKEFLAGS) installcheck \
4684- && $(MAKE) $(AM_MAKEFLAGS) uninstall \
4685- && $(MAKE) $(AM_MAKEFLAGS) distuninstallcheck_dir="$$dc_install_base" \
4686- distuninstallcheck \
4687- && chmod -R a-w "$$dc_install_base" \
4688- && ({ \
4689- (cd ../.. && umask 077 && mkdir "$$dc_destdir") \
4690- && $(MAKE) $(AM_MAKEFLAGS) DESTDIR="$$dc_destdir" install \
4691- && $(MAKE) $(AM_MAKEFLAGS) DESTDIR="$$dc_destdir" uninstall \
4692- && $(MAKE) $(AM_MAKEFLAGS) DESTDIR="$$dc_destdir" \
4693- distuninstallcheck_dir="$$dc_destdir" distuninstallcheck; \
4694- } || { rm -rf "$$dc_destdir"; exit 1; }) \
4695- && rm -rf "$$dc_destdir" \
4696- && $(MAKE) $(AM_MAKEFLAGS) dist \
4697- && rm -rf $(DIST_ARCHIVES) \
4698- && $(MAKE) $(AM_MAKEFLAGS) distcleancheck \
4699- && cd "$$am__cwd" \
4700- || exit 1
4701- $(am__remove_distdir)
4702- @(echo "$(distdir) archives ready for distribution: "; \
4703- list='$(DIST_ARCHIVES)'; for i in $$list; do echo $$i; done) | \
4704- sed -e 1h -e 1s/./=/g -e 1p -e 1x -e '$$p' -e '$$x'
4705-distuninstallcheck:
4706- @$(am__cd) '$(distuninstallcheck_dir)' \
4707- && test `$(distuninstallcheck_listfiles) | wc -l` -le 1 \
4708- || { echo "ERROR: files left after uninstall:" ; \
4709- if test -n "$(DESTDIR)"; then \
4710- echo " (check DESTDIR support)"; \
4711- fi ; \
4712- $(distuninstallcheck_listfiles) ; \
4713- exit 1; } >&2
4714-distcleancheck: distclean
4715- @if test '$(srcdir)' = . ; then \
4716- echo "ERROR: distcleancheck can only run from a VPATH build" ; \
4717- exit 1 ; \
4718- fi
4719- @test `$(distcleancheck_listfiles) | wc -l` -eq 0 \
4720- || { echo "ERROR: files left in build directory after distclean:" ; \
4721- $(distcleancheck_listfiles) ; \
4722- exit 1; } >&2
4723-check-am: all-am
4724- $(MAKE) $(AM_MAKEFLAGS) $(dist_check_SCRIPTS) $(check_DATA)
4725- $(MAKE) $(AM_MAKEFLAGS) check-local
4726-check: $(BUILT_SOURCES)
4727- $(MAKE) $(AM_MAKEFLAGS) check-recursive
4728-all-am: Makefile $(LIBRARIES) $(PROGRAMS) $(SCRIPTS) $(MANS) $(DATA) \
4729- $(HEADERS) config.h all-local
4730-installdirs: installdirs-recursive
4731-installdirs-am:
4732- for dir in "$(DESTDIR)$(bindir)" "$(DESTDIR)$(sbindir)" "$(DESTDIR)$(bindir)" "$(DESTDIR)$(pkgdatadir)" "$(DESTDIR)$(sbindir)" "$(DESTDIR)$(scriptsdir)" "$(DESTDIR)$(sbindir)" "$(DESTDIR)$(scriptsdir)" "$(DESTDIR)$(man1dir)" "$(DESTDIR)$(man5dir)" "$(DESTDIR)$(man8dir)" "$(DESTDIR)$(pkgdatadir)" "$(DESTDIR)$(scriptsdir)" "$(DESTDIR)$(pkgdatadir)" "$(DESTDIR)$(ovsdbmonitordir)" "$(DESTDIR)$(pkgdatadir)" "$(DESTDIR)$(scriptsdir)"; do \
4733- test -z "$$dir" || $(MKDIR_P) "$$dir"; \
4734- done
4735-install: $(BUILT_SOURCES)
4736- $(MAKE) $(AM_MAKEFLAGS) install-recursive
4737-install-exec: install-exec-recursive
4738-install-data: install-data-recursive
4739-uninstall: uninstall-recursive
4740-
4741-install-am: all-am
4742- @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am
4743-
4744-installcheck: installcheck-recursive
4745-install-strip:
4746- $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
4747- install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
4748- `test -z '$(STRIP)' || \
4749- echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install
4750-mostlyclean-generic:
4751-
4752-clean-generic:
4753- -test -z "$(CLEANFILES)" || rm -f $(CLEANFILES)
4754-
4755-distclean-generic:
4756- -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES)
4757- -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES)
4758- -rm -f lib/$(DEPDIR)/$(am__dirstamp)
4759- -rm -f lib/$(am__dirstamp)
4760- -rm -f ofproto/$(DEPDIR)/$(am__dirstamp)
4761- -rm -f ofproto/$(am__dirstamp)
4762- -rm -f ovsdb/$(DEPDIR)/$(am__dirstamp)
4763- -rm -f ovsdb/$(am__dirstamp)
4764- -rm -f tests/$(DEPDIR)/$(am__dirstamp)
4765- -rm -f tests/$(am__dirstamp)
4766- -rm -f utilities/$(DEPDIR)/$(am__dirstamp)
4767- -rm -f utilities/$(am__dirstamp)
4768- -rm -f vswitchd/$(DEPDIR)/$(am__dirstamp)
4769- -rm -f vswitchd/$(am__dirstamp)
4770- -test -z "$(DISTCLEANFILES)" || rm -f $(DISTCLEANFILES)
4771-
4772-maintainer-clean-generic:
4773- @echo "This command is intended for maintainers to use"
4774- @echo "it deletes files that may require special tools to rebuild."
4775- -test -z "$(BUILT_SOURCES)" || rm -f $(BUILT_SOURCES)
4776-@BUILD_OVSDBMONITOR_FALSE@install-exec-hook:
4777-clean: clean-recursive
4778-
4779-clean-am: clean-binPROGRAMS clean-generic clean-local \
4780- clean-noinstLIBRARIES clean-noinstPROGRAMS clean-sbinPROGRAMS \
4781- mostlyclean-am
4782-
4783-distclean: distclean-recursive
4784- -rm -f $(am__CONFIG_DISTCLEAN_FILES)
4785- -rm -rf lib/$(DEPDIR) ofproto/$(DEPDIR) ovsdb/$(DEPDIR) tests/$(DEPDIR) utilities/$(DEPDIR) vswitchd/$(DEPDIR)
4786- -rm -f Makefile
4787-distclean-am: clean-am distclean-compile distclean-generic \
4788- distclean-hdr distclean-tags
4789-
4790-dvi: dvi-recursive
4791-
4792-dvi-am:
4793-
4794-html: html-recursive
4795-
4796-html-am:
4797-
4798-info: info-recursive
4799-
4800-info-am:
4801-
4802-install-data-am: install-data-local install-dist_pkgdataDATA \
4803- install-dist_pkgdataSCRIPTS install-dist_scriptsDATA \
4804- install-dist_scriptsSCRIPTS install-man \
4805- install-nobase_pkgdataDATA install-ovsdbmonitorDATA \
4806- install-pkgdataDATA install-scriptsDATA install-scriptsSCRIPTS
4807-
4808-install-dvi: install-dvi-recursive
4809-
4810-install-dvi-am:
4811-
4812-install-exec-am: install-binPROGRAMS install-binSCRIPTS \
4813- install-dist_sbinSCRIPTS install-sbinPROGRAMS \
4814- install-sbinSCRIPTS
4815- @$(NORMAL_INSTALL)
4816- $(MAKE) $(AM_MAKEFLAGS) install-exec-hook
4817-install-html: install-html-recursive
4818-
4819-install-html-am:
4820-
4821-install-info: install-info-recursive
4822-
4823-install-info-am:
4824-
4825-install-man: install-man1 install-man5 install-man8
4826-
4827-install-pdf: install-pdf-recursive
4828-
4829-install-pdf-am:
4830-
4831-install-ps: install-ps-recursive
4832-
4833-install-ps-am:
4834-
4835-installcheck-am:
4836-
4837-maintainer-clean: maintainer-clean-recursive
4838- -rm -f $(am__CONFIG_DISTCLEAN_FILES)
4839- -rm -rf $(top_srcdir)/autom4te.cache
4840- -rm -rf lib/$(DEPDIR) ofproto/$(DEPDIR) ovsdb/$(DEPDIR) tests/$(DEPDIR) utilities/$(DEPDIR) vswitchd/$(DEPDIR)
4841- -rm -f Makefile
4842-maintainer-clean-am: distclean-am maintainer-clean-generic
4843-
4844-mostlyclean: mostlyclean-recursive
4845-
4846-mostlyclean-am: mostlyclean-compile mostlyclean-generic
4847-
4848-pdf: pdf-recursive
4849-
4850-pdf-am:
4851-
4852-ps: ps-recursive
4853-
4854-ps-am:
4855-
4856-uninstall-am: uninstall-binPROGRAMS uninstall-binSCRIPTS \
4857- uninstall-dist_pkgdataDATA uninstall-dist_pkgdataSCRIPTS \
4858- uninstall-dist_sbinSCRIPTS uninstall-dist_scriptsDATA \
4859- uninstall-dist_scriptsSCRIPTS uninstall-local uninstall-man \
4860- uninstall-nobase_pkgdataDATA uninstall-ovsdbmonitorDATA \
4861- uninstall-pkgdataDATA uninstall-sbinPROGRAMS \
4862- uninstall-sbinSCRIPTS uninstall-scriptsDATA \
4863- uninstall-scriptsSCRIPTS
4864-
4865-uninstall-man: uninstall-man1 uninstall-man5 uninstall-man8
4866-
4867-.MAKE: $(RECURSIVE_CLEAN_TARGETS) $(RECURSIVE_TARGETS) all check \
4868- check-am ctags-recursive install install-am install-exec-am \
4869- install-strip tags-recursive
4870-
4871-.PHONY: $(RECURSIVE_CLEAN_TARGETS) $(RECURSIVE_TARGETS) CTAGS GTAGS \
4872- all all-am all-local am--refresh check check-am check-local \
4873- clean clean-binPROGRAMS clean-generic clean-local \
4874- clean-noinstLIBRARIES clean-noinstPROGRAMS clean-sbinPROGRAMS \
4875- ctags ctags-recursive dist dist-all dist-bzip2 dist-gzip \
4876- dist-hook dist-lzma dist-shar dist-tarZ dist-xz dist-zip \
4877- distcheck distclean distclean-compile distclean-generic \
4878- distclean-hdr distclean-tags distcleancheck distdir \
4879- distuninstallcheck dvi dvi-am html html-am info info-am \
4880- install install-am install-binPROGRAMS install-binSCRIPTS \
4881- install-data install-data-am install-data-local \
4882- install-dist_pkgdataDATA install-dist_pkgdataSCRIPTS \
4883- install-dist_sbinSCRIPTS install-dist_scriptsDATA \
4884- install-dist_scriptsSCRIPTS install-dvi install-dvi-am \
4885- install-exec install-exec-am install-exec-hook install-html \
4886- install-html-am install-info install-info-am install-man \
4887- install-man1 install-man5 install-man8 \
4888- install-nobase_pkgdataDATA install-ovsdbmonitorDATA \
4889- install-pdf install-pdf-am install-pkgdataDATA install-ps \
4890- install-ps-am install-sbinPROGRAMS install-sbinSCRIPTS \
4891- install-scriptsDATA install-scriptsSCRIPTS install-strip \
4892- installcheck installcheck-am installdirs installdirs-am \
4893- maintainer-clean maintainer-clean-generic mostlyclean \
4894- mostlyclean-compile mostlyclean-generic pdf pdf-am ps ps-am \
4895- tags tags-recursive uninstall uninstall-am \
4896- uninstall-binPROGRAMS uninstall-binSCRIPTS \
4897- uninstall-dist_pkgdataDATA uninstall-dist_pkgdataSCRIPTS \
4898- uninstall-dist_sbinSCRIPTS uninstall-dist_scriptsDATA \
4899- uninstall-dist_scriptsSCRIPTS uninstall-local uninstall-man \
4900- uninstall-man1 uninstall-man5 uninstall-man8 \
4901- uninstall-nobase_pkgdataDATA uninstall-ovsdbmonitorDATA \
4902- uninstall-pkgdataDATA uninstall-sbinPROGRAMS \
4903- uninstall-sbinSCRIPTS uninstall-scriptsDATA \
4904- uninstall-scriptsSCRIPTS
4905-
4906-.in:
4907- $(PERL) $(srcdir)/build-aux/soexpand.pl -I$(srcdir) < $< | \
4908- sed \
4909- -e 's,[@]PKIDIR[@],$(PKIDIR),g' \
4910- -e 's,[@]LOGDIR[@],$(LOGDIR),g' \
4911- -e 's,[@]PERL[@],$(PERL),g' \
4912- -e 's,[@]PYTHON[@],$(PYTHON),g' \
4913- -e 's,[@]RUNDIR[@],$(RUNDIR),g' \
4914- -e 's,[@]VERSION[@],$(VERSION),g' \
4915- -e 's,[@]BUILDNR[@],$(BUILDNR),g' \
4916- -e 's,[@]localstatedir[@],$(localstatedir),g' \
4917- -e 's,[@]pkgdatadir[@],$(pkgdatadir),g' \
4918- -e 's,[@]sysconfdir[@],$(sysconfdir),g' \
4919- -e 's,[@]bindir[@],$(bindir),g' \
4920- -e 's,[@]sbindir[@],$(sbindir),g' \
4921- -e 's,[@]abs_top_srcdir[@],$(abs_top_srcdir),g' \
4922- -e 's,[@]ovsdbmonitordir[@],$(ovsdbmonitordir),g' \
4923- > $@.tmp
4924- @if head -n 1 $@.tmp | grep '#!' > /dev/null; then \
4925- echo chmod +x $@.tmp; \
4926- chmod +x $@.tmp; \
4927- fi
4928- mv $@.tmp $@
4929-dist-hook-git: distfiles
4930- @if test -e $(srcdir)/.git && (git --version) >/dev/null 2>&1; then \
4931- (cd datapath && $(MAKE) distfiles); \
4932- (cat distfiles; sed 's|^|datapath/|' datapath/distfiles) | \
4933- sort -u > all-distfiles; \
4934- (cd $(srcdir) && git ls-files) | grep -v '\.gitignore$$' | \
4935- sort -u > all-gitfiles; \
4936- comm -1 -3 all-distfiles all-gitfiles > missing-distfiles; \
4937- if test -s missing-distfiles; then \
4938- echo "The distribution is missing the following files:"; \
4939- cat missing-distfiles; \
4940- exit 1; \
4941- fi; \
4942- fi
4943-# The following is based on commands for the Automake "distdir" target.
4944-distfiles: Makefile
4945- @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
4946- topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
4947- list='$(DISTFILES)'; \
4948- for file in $$list; do echo $$file; done | \
4949- sed -e "s|^$$srcdirstrip/||;t" \
4950- -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t" | sort -u > $@
4951-rate-limit-check:
4952- @if test -e $(srcdir)/.git && (git --version) >/dev/null 2>&1 && \
4953- git --no-pager grep -n -E '^[ ]+struct vlog_rate_limit.*=' $(srcdir); \
4954- then \
4955- echo "See above for list of violations of the rule that "; \
4956- echo "'struct vlog_rate_limit' must always be 'static'"; \
4957- exit 1; \
4958- fi
4959-@HAVE_GROFF_TRUE@manpage-check: $(man_MANS) $(dist_man_MANS) $(noinst_man_MANS)
4960-@HAVE_GROFF_TRUE@ @error=false; \
4961-@HAVE_GROFF_TRUE@ for manpage in $?; do \
4962-@HAVE_GROFF_TRUE@ LANG=en_US.UTF-8 groff -w mac -w delim -w escape -w input -w missing -w tab -T utf8 -man -p -z $$manpage >$@.tmp 2>&1; \
4963-@HAVE_GROFF_TRUE@ if grep warning: $@.tmp; then error=:; fi; \
4964-@HAVE_GROFF_TRUE@ rm -f $@.tmp; \
4965-@HAVE_GROFF_TRUE@ done; \
4966-@HAVE_GROFF_TRUE@ if $$error; then exit 1; else echo touch $@; touch $@; fi
4967-
4968-ovsdb/ovsdb-client.1: \
4969- ovsdb/ovsdb-client.1.in \
4970- lib/common-syn.man \
4971- lib/common.man \
4972- lib/daemon-syn.man \
4973- lib/daemon.man \
4974- lib/ssl-bootstrap-syn.man \
4975- lib/ssl-bootstrap.man \
4976- lib/ssl-syn.man \
4977- lib/ssl.man \
4978- lib/table.man \
4979- lib/vlog-syn.man \
4980- lib/vlog.man \
4981- ovsdb/remote-active.man \
4982- ovsdb/remote-passive.man
4983-ovsdb/ovsdb-client.1.in:
4984-lib/common-syn.man:
4985-lib/common.man:
4986-lib/daemon-syn.man:
4987-lib/daemon.man:
4988-lib/ssl-bootstrap-syn.man:
4989-lib/ssl-bootstrap.man:
4990-lib/ssl-syn.man:
4991-lib/ssl.man:
4992-lib/table.man:
4993-lib/vlog-syn.man:
4994-lib/vlog.man:
4995-ovsdb/remote-active.man:
4996-ovsdb/remote-passive.man:
4997-
4998-ovsdb/ovsdb-server.1: \
4999- ovsdb/ovsdb-server.1.in \
5000- lib/common-syn.man \
The diff has been truncated for viewing.

Subscribers

People subscribed via source and target branches