diff options
Diffstat (limited to 'volk/Makefile.am')
-rw-r--r-- | volk/Makefile.am | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/volk/Makefile.am b/volk/Makefile.am index 4c6951ca7..03c5aac35 100644 --- a/volk/Makefile.am +++ b/volk/Makefile.am @@ -24,7 +24,12 @@ ACLOCAL_AMFLAGS = -I config include $(top_srcdir)/Makefile.common EXTRA_DIST = bootstrap configure config.h.in volk_config.h -SUBDIRS = config include lib +SUBDIRS = config +if LV_HAVE_ORC +SUBDIRS += orc +endif +SUBDIRS += include lib + #if USE_PYTHON #SUBDIRS += python #endif @@ -53,4 +58,6 @@ distclean-local: -rm -f include/Makefile.in -rm -f lib/Makefile.in -rm -f python/Makefile.in - -rm -f configure
\ No newline at end of file + -rm -f configure + -rm -f orc/Makefile.in + -rm -f orc/*.c |