X-Git-Url: http://git.cascardo.eti.br/?a=blobdiff_plain;f=Makefile.am;h=3c2ae89aa46d56627143cf56c695ecc9a7fd8149;hb=bd9d70250b2ebffe43a8863b89bf9b3157a940d6;hp=f62198bca2a20b29540fdfadd39fbda488eb78e2;hpb=c803536e1cf531e29a31edfe740666ee6045d555;p=cascardo%2Fovs.git diff --git a/Makefile.am b/Makefile.am index f62198bca..3c2ae89aa 100644 --- a/Makefile.am +++ b/Makefile.am @@ -20,6 +20,7 @@ AM_LDFLAGS += $(PTHREAD_LDFLAGS) endif AM_CPPFLAGS += -I $(top_srcdir)/include +AM_CPPFLAGS += -I $(top_builddir)/include AM_CPPFLAGS += -I $(top_srcdir)/lib AM_CPPFLAGS += -I $(top_builddir)/lib @@ -81,6 +82,9 @@ EXTRA_DIST = \ README-lisp \ REPORTING-BUGS \ TODO \ + .travis.yml \ + .travis/build.sh \ + .travis/prepare.sh \ WHY-OVS \ boot.sh \ build-aux/cccl \ @@ -286,6 +290,16 @@ $(srcdir)/manpages.mk: $(MAN_ROOTS) build-aux/sodepends.pl fi CLEANFILES += manpage-dep-check +if VSTUDIO_DDK +ALL_LOCAL += ovsext_make +ovsext_make: datapath-windows/ovsext.sln + MSBuild.exe datapath-windows/ovsext.sln /target:Build /property:Configuration="$(VSTUDIO_CONFIG)" + +CLEAN_LOCAL += ovsext_clean +ovsext_clean: datapath-windows/ovsext.sln + MSBuild.exe datapath-windows/ovsext.sln /target:Clean /property:Configuration="$(VSTUDIO_CONFIG)" +endif + dist-hook: $(DIST_HOOKS) all-local: $(ALL_LOCAL) clean-local: $(CLEAN_LOCAL) @@ -315,3 +329,4 @@ include python/compat/automake.mk include tutorial/automake.mk include vtep/automake.mk include datapath-windows/automake.mk +include datapath-windows/include/automake.mk