vswitch: Don't pass null pointer to stat().
[sliver-openvswitch.git] / secchan / automake.mk
1 # Copyright (C) 2009 Nicira Networks, Inc.
2 #
3 # Copying and distribution of this file, with or without modification,
4 # are permitted in any medium without royalty provided the copyright
5 # notice and this notice are preserved.  This file is offered as-is,
6 # without warranty of any kind.
7
8 bin_PROGRAMS += secchan/secchan
9 man_MANS += secchan/secchan.8
10
11 secchan_secchan_SOURCES = secchan/main.c
12 secchan_secchan_LDADD = \
13         secchan/libsecchan.a \
14         lib/libopenvswitch.a \
15         $(FAULT_LIBS) \
16         $(SSL_LIBS)
17
18 noinst_LIBRARIES += secchan/libsecchan.a
19 secchan_libsecchan_a_SOURCES = \
20         secchan/discovery.c \
21         secchan/discovery.h \
22         secchan/executer.c \
23         secchan/executer.h \
24         secchan/fail-open.c \
25         secchan/fail-open.h \
26         secchan/in-band.c \
27         secchan/in-band.h \
28         secchan/netflow.c \
29         secchan/netflow.h \
30         secchan/ofproto.c \
31         secchan/ofproto.h \
32         secchan/pktbuf.c \
33         secchan/pktbuf.h \
34         secchan/pinsched.c \
35         secchan/pinsched.h \
36         secchan/status.c \
37         secchan/status.h
38
39 EXTRA_DIST += secchan/secchan.8.in
40 DISTCLEANFILES += secchan/secchan.8
41
42 include secchan/commands/automake.mk