1 # Copyright (C) 2009, 2010, 2011 Nicira Networks, 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 = \
48 lib/dynamic-string.c \
49 lib/dynamic-string.h \
70 lib/learning-switch.c \
71 lib/learning-switch.h \
81 lib/netdev-provider.h \
105 lib/ovsdb-idl-provider.h \
141 lib/stream-provider.h \
172 lib/vconn-provider.h \
180 nodist_lib_libopenvswitch_a_SOURCES = \
182 CLEANFILES += $(nodist_lib_libopenvswitch_a_SOURCES)
184 noinst_LIBRARIES += lib/libsflow.a
185 lib_libsflow_a_SOURCES = \
189 lib/sflow_sampler.c \
192 lib_libsflow_a_CFLAGS = $(AM_CFLAGS)
194 lib_libsflow_a_CFLAGS += -Wno-unused
196 if HAVE_WNO_UNUSED_PARAMETER
197 lib_libsflow_a_CFLAGS += -Wno-unused-parameter
201 lib_libopenvswitch_a_SOURCES += \
208 lib/netlink-protocol.h \
209 lib/netlink-socket.c \
210 lib/netlink-socket.h \
213 lib/rtnetlink-link.c \
214 lib/rtnetlink-link.h \
220 lib_libopenvswitch_a_SOURCES += lib/stream-ssl.c
221 nodist_lib_libopenvswitch_a_SOURCES += lib/dhparams.c
222 lib/dhparams.c: lib/dh1024.pem lib/dh2048.pem lib/dh4096.pem
223 (echo '#include "lib/dhparams.h"' && \
224 openssl dhparam -C -in $(srcdir)/lib/dh1024.pem -noout && \
225 openssl dhparam -C -in $(srcdir)/lib/dh2048.pem -noout && \
226 openssl dhparam -C -in $(srcdir)/lib/dh4096.pem -noout) \
227 | sed 's/\(get_dh[0-9]*\)()/\1(void)/' > lib/dhparams.c.tmp
228 mv lib/dhparams.c.tmp lib/dhparams.c
230 lib_libopenvswitch_a_SOURCES += lib/stream-nossl.c
244 lib/leak-checker.man \
245 lib/ssl-bootstrap.man \
246 lib/ssl-bootstrap-syn.man \
247 lib/ssl-peer-ca-cert.man \
250 lib/stress-unixctl.man \
253 lib/unixctl-syn.man \
254 lib/vconn-active.man \
255 lib/vconn-passive.man \
256 lib/vlog-unixctl.man \
260 lib/dirs.c: lib/dirs.c.in Makefile
261 ($(ro_c) && sed < $(srcdir)/lib/dirs.c.in \
262 -e 's,[@]srcdir[@],$(srcdir),g' \
263 -e 's,[@]LOGDIR[@],"$(LOGDIR)",g' \
264 -e 's,[@]RUNDIR[@],"$(RUNDIR)",g' \
265 -e 's,[@]bindir[@],"$(bindir)",g' \
266 -e 's,[@]sysconfdir[@],"$(sysconfdir)",g' \
267 -e 's,[@]pkgdatadir[@],"$(pkgdatadir)",g') \
269 mv lib/dirs.c.tmp lib/dirs.c
271 $(srcdir)/lib/ofp-errors.c: \
272 include/openflow/openflow.h include/openflow/nicira-ext.h \
273 build-aux/extract-ofp-errors
274 cd $(srcdir)/include && \
275 $(PYTHON) ../build-aux/extract-ofp-errors \
276 openflow/openflow.h openflow/nicira-ext.h > ../lib/ofp-errors.c
277 EXTRA_DIST += build-aux/extract-ofp-errors
279 INSTALL_DATA_LOCAL += lib-install-data-local
280 lib-install-data-local:
281 $(MKDIR_P) $(DESTDIR)$(RUNDIR)
282 $(MKDIR_P) $(DESTDIR)$(PKIDIR)
283 $(MKDIR_P) $(DESTDIR)$(LOGDIR)
285 if !USE_LINKER_SECTIONS
286 # All distributed sources, with names adjust properly for referencing
289 `for file in $(DIST_SOURCES); do \
290 if test -f $$file; then \
293 echo $(VPATH)/$$file; \
297 lib/coverage.$(OBJEXT): lib/coverage.def
298 lib/coverage.def: $(DIST_SOURCES)
299 sed -n 's|^COVERAGE_DEFINE(\([_a-zA-Z0-9]\{1,\}\)).*$$|COVERAGE_COUNTER(\1)|p' $(all_sources) | LC_ALL=C sort -u > $@
300 CLEANFILES += lib/coverage.def
302 lib/stress.$(OBJEXT): lib/stress.def
303 lib/stress.def: $(DIST_SOURCES)
304 sed -n '/^STRESS_OPTION(/,/);$$/{s/);$$/)/;p}' $(all_sources) > $@
305 CLEANFILES += lib/stress.def
307 lib/vlog.$(OBJEXT): lib/vlog-modules.def
308 lib/vlog-modules.def: $(DIST_SOURCES)
309 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 > $@
310 CLEANFILES += lib/vlog-modules.def