X-Git-Url: http://git.onelab.eu/?a=blobdiff_plain;f=Makefile.am;h=932f495f0a0c64e05936df710c134726ac33c5bd;hb=1e3f34c7693bcabae8e443ac1b246680ef9b60e2;hp=d7eadec4979924748cdc46afbcdb32733c569737;hpb=ffa2665decbf47eb2a1ce642944144061454940c;p=sliver-openvswitch.git diff --git a/Makefile.am b/Makefile.am index d7eadec49..932f495f0 100644 --- a/Makefile.am +++ b/Makefile.am @@ -1,4 +1,4 @@ -# Copyright (C) 2007, 2008, 2009, 2010, 2011, 2012 Nicira Networks, Inc. +# Copyright (C) 2007, 2008, 2009, 2010, 2011, 2012 Nicira, Inc. # # Copying and distribution of this file, with or without modification, # are permitted in any medium without royalty provided the copyright @@ -20,10 +20,18 @@ AM_CFLAGS += $(WARNING_FLAGS) if NDEBUG AM_CPPFLAGS += -DNDEBUG AM_CFLAGS += -fomit-frame-pointer -else -AM_LDFLAGS = -export-dynamic endif +# PYTHONDONTWRITEBYTECODE=yes keeps Python from creating .pyc and .pyo +# files. Creating .py[co] works OK for any given version of Open +# vSwitch, but it causes trouble if you switch from a version with +# foo/__init__.py into an (older) version with plain foo.py, since +# foo/__init__.pyc will cause Python to ignore foo.py. +run_python = \ + PYTHONDONTWRITEBYTECODE=yes \ + PYTHONPATH=$(top_srcdir)/python:$$PYTHONPATH \ + $(PYTHON) + ALL_LOCAL = BUILT_SOURCES = CLEANFILES = @@ -33,14 +41,16 @@ PYCOV_CLEAN_FILES = build-aux/check-structs,cover EXTRA_DIST = \ CodingStyle \ DESIGN \ + FAQ \ + INSTALL \ INSTALL.KVM \ INSTALL.Libvirt \ - INSTALL.Linux \ INSTALL.RHEL \ INSTALL.SSL \ INSTALL.XenServer \ INSTALL.bridge \ INSTALL.userspace \ + IntegrationGuide \ NOTICE \ PORTING \ README-gcov \ @@ -98,6 +108,7 @@ SUFFIXES += .in sed \ -e 's,[@]PKIDIR[@],$(PKIDIR),g' \ -e 's,[@]LOGDIR[@],$(LOGDIR),g' \ + -e 's,[@]DBDIR[@],$(DBDIR),g' \ -e 's,[@]PERL[@],$(PERL),g' \ -e 's,[@]PYTHON[@],$(PYTHON),g' \ -e 's,[@]RUNDIR[@],$(RUNDIR),g' \ @@ -123,6 +134,11 @@ CLEAN_LOCAL += clean-pycov # If we're checked out from a Git repository, make sure that every # file that is in Git is distributed. +# +# We only enable this check when GNU make is in use because the +# Makefile in datapath/linux, needed to get the list of files to +# distribute, requires GNU make extensions. +if GNU_MAKE ALL_LOCAL += dist-hook-git dist-hook-git: distfiles @if test -e $(srcdir)/.git && (git --version) >/dev/null 2>&1; then \ @@ -148,6 +164,8 @@ distfiles: Makefile sed -e "s|^$$srcdirstrip/||;t" \ -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t" | sort -u > $@ CLEANFILES += distfiles +endif +.PHONY: dist-hook-git # Check that "struct vlog_ratelimit" is always declared "static". ALL_LOCAL += rate-limit-check @@ -159,6 +177,7 @@ rate-limit-check: echo "'struct vlog_rate_limit' must always be 'static'"; \ exit 1; \ fi +.PHONY: rate-limit-check if HAVE_GROFF ALL_LOCAL += manpage-check