1 # Copyright (C) 2009, 2010, 2011, 2012 Nicira, Inc.
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.
8 noinst_LIBRARIES += lib/libopenvswitch.a
10 lib_libopenvswitch_a_SOURCES = \
50 lib/dynamic-string.c \
51 lib/dynamic-string.h \
74 lib/learning-switch.c \
75 lib/learning-switch.h \
87 lib/netdev-provider.h \
112 lib/ovsdb-idl-provider.h \
150 lib/stream-provider.h \
181 lib/vconn-provider.h \
194 nodist_lib_libopenvswitch_a_SOURCES = \
196 CLEANFILES += $(nodist_lib_libopenvswitch_a_SOURCES)
198 noinst_LIBRARIES += lib/libsflow.a
199 lib_libsflow_a_SOURCES = \
203 lib/sflow_sampler.c \
206 lib_libsflow_a_CFLAGS = $(AM_CFLAGS)
208 lib_libsflow_a_CFLAGS += -Wno-unused
210 if HAVE_WNO_UNUSED_PARAMETER
211 lib_libsflow_a_CFLAGS += -Wno-unused-parameter
215 lib_libopenvswitch_a_SOURCES += \
222 lib/netlink-notifier.c \
223 lib/netlink-notifier.h \
224 lib/netlink-protocol.h \
225 lib/netlink-socket.c \
226 lib/netlink-socket.h \
227 lib/rtnetlink-link.c \
228 lib/rtnetlink-link.h \
234 lib_libopenvswitch_a_SOURCES += lib/stream-ssl.c
235 nodist_lib_libopenvswitch_a_SOURCES += lib/dhparams.c
236 lib/dhparams.c: lib/dh1024.pem lib/dh2048.pem lib/dh4096.pem
237 (echo '#include "lib/dhparams.h"' && \
238 openssl dhparam -C -in $(srcdir)/lib/dh1024.pem -noout && \
239 openssl dhparam -C -in $(srcdir)/lib/dh2048.pem -noout && \
240 openssl dhparam -C -in $(srcdir)/lib/dh4096.pem -noout) \
241 | sed 's/\(get_dh[0-9]*\)()/\1(void)/' > lib/dhparams.c.tmp
242 mv lib/dhparams.c.tmp lib/dhparams.c
244 lib_libopenvswitch_a_SOURCES += lib/stream-nossl.c
256 lib/coverage-unixctl.man \
259 lib/leak-checker.man \
261 lib/ssl-bootstrap.man \
262 lib/ssl-bootstrap-syn.man \
263 lib/ssl-peer-ca-cert.man \
266 lib/stress-unixctl.man \
269 lib/unixctl-syn.man \
270 lib/vconn-active.man \
271 lib/vconn-passive.man \
272 lib/vlog-unixctl.man \
280 lib/vswitch-idl.ovsidl
282 EXTRA_DIST += lib/vswitch-idl.ann
283 VSWITCH_IDL_FILES = vswitchd/vswitch.ovsschema lib/vswitch-idl.ann
284 lib/vswitch-idl.ovsidl: $(VSWITCH_IDL_FILES)
285 $(OVSDB_IDLC) -C $(srcdir) annotate $(VSWITCH_IDL_FILES) > $@.tmp
288 lib/dirs.c: lib/dirs.c.in Makefile
289 ($(ro_c) && sed < $(srcdir)/lib/dirs.c.in \
290 -e 's,[@]srcdir[@],$(srcdir),g' \
291 -e 's,[@]LOGDIR[@],"$(LOGDIR)",g' \
292 -e 's,[@]RUNDIR[@],"$(RUNDIR)",g' \
293 -e 's,[@]bindir[@],"$(bindir)",g' \
294 -e 's,[@]sysconfdir[@],"$(sysconfdir)",g' \
295 -e 's,[@]pkgdatadir[@],"$(pkgdatadir)",g') \
297 mv lib/dirs.c.tmp lib/dirs.c
299 $(srcdir)/lib/ofp-errors.inc: \
300 lib/ofp-errors.h $(srcdir)/build-aux/extract-ofp-errors
301 $(PYTHON) $(srcdir)/build-aux/extract-ofp-errors \
302 $(srcdir)/lib/ofp-errors.h > $@.tmp && mv $@.tmp $@
303 $(srcdir)/lib/ofp-errors.c: $(srcdir)/lib/ofp-errors.inc
304 EXTRA_DIST += build-aux/extract-ofp-errors lib/ofp-errors.inc
306 INSTALL_DATA_LOCAL += lib-install-data-local
307 lib-install-data-local:
308 $(MKDIR_P) $(DESTDIR)$(RUNDIR)
309 $(MKDIR_P) $(DESTDIR)$(PKIDIR)
310 $(MKDIR_P) $(DESTDIR)$(LOGDIR)
312 if !USE_LINKER_SECTIONS
313 # All distributed sources, with names adjust properly for referencing
316 `for file in $(DIST_SOURCES); do \
317 if test -f $$file; then \
320 echo $(VPATH)/$$file; \
324 lib/coverage.$(OBJEXT): lib/coverage.def
325 lib/coverage.def: $(DIST_SOURCES)
326 sed -n 's|^COVERAGE_DEFINE(\([_a-zA-Z0-9]\{1,\}\)).*$$|COVERAGE_COUNTER(\1)|p' $(all_sources) | LC_ALL=C sort -u > $@
327 CLEANFILES += lib/coverage.def
329 lib/stress.$(OBJEXT): lib/stress.def
330 lib/stress.def: $(DIST_SOURCES)
331 sed -n '/^STRESS_OPTION(/,/);$$/{s/);$$/)/;p}' $(all_sources) > $@
332 CLEANFILES += lib/stress.def
334 lib/vlog.$(OBJEXT): lib/vlog-modules.def
335 lib/vlog-modules.def: $(DIST_SOURCES)
336 sed -n 's|^VLOG_DEFINE_\(THIS_\)\{0,1\}MODULE(\([_a-zA-Z0-9]\{1,\}\)).*$$|VLOG_MODULE(\2)|p' $(all_sources) | LC_ALL=C sort -u > $@
337 CLEANFILES += lib/vlog-modules.def