From 611526f9dfba0df4a1a49d47916706438ac194b3 Mon Sep 17 00:00:00 2001 From: Nick Foster Date: Tue, 14 Dec 2010 01:00:29 -0800 Subject: Volk: Automated more automake for orc. Brought orcc generation in. Shared library libvolk_orc.la. Linking is hackery right now with specified -lorc-0.4 flags; this should change. Otherwise pretty much OK. --- volk/orc/Makefile.am | 14 +++++++++++--- 1 file changed, 11 insertions(+), 3 deletions(-) (limited to 'volk/orc') diff --git a/volk/orc/Makefile.am b/volk/orc/Makefile.am index f5aa7d45c..092e66534 100644 --- a/volk/orc/Makefile.am +++ b/volk/orc/Makefile.am @@ -19,7 +19,15 @@ # include $(top_srcdir)/Makefile.common +lib_LTLIBRARIES = libvolk_orc.la +libvolk_orc_la_LDFLAGS = $(ORC_LDFLAGS) -libvolk_orc_a_SOURCES = volk_32f_sqrt_aligned16_orc_impl.c -libvolk_orc_a_LDFLAGS = -lorc-0.4 -lib_LIBRARIES = libvolk_orc.a +libvolk_orc_la_SOURCES = \ +volk_32f_sqrt_aligned16_orc_impl.orc + + + +ORCC_FLAGS = --implementation --lazy-init + +.orc.c: + $(ORCC) $(ORCC_FLAGS) -o $@ $< -- cgit