X-Git-Url: http://git.lttng.org/?a=blobdiff_plain;f=tests%2Futils%2Ftestapp%2Fgen-ust-events-constructor%2FMakefile.am;h=b68602b348a05f9f8c7fc0f2bcfc22aea5652e04;hb=09a872ef0b4e1432329aa42fecc61f50e9baa367;hp=4e7e1e1021576da8db846e4d074b411ec9851608;hpb=a4cc1b1ff4fc661a3980bbe2ceba789acf05dfce;p=lttng-tools.git diff --git a/tests/utils/testapp/gen-ust-events-constructor/Makefile.am b/tests/utils/testapp/gen-ust-events-constructor/Makefile.am index 4e7e1e102..b68602b34 100644 --- a/tests/utils/testapp/gen-ust-events-constructor/Makefile.am +++ b/tests/utils/testapp/gen-ust-events-constructor/Makefile.am @@ -12,6 +12,11 @@ WARN_FLAGS = \ AM_CFLAGS += $(WARN_FLAGS) AM_CXXFLAGS += $(WARN_FLAGS) +noinst_LTLIBRARIES = libtp-a-provider.la libtp-a-define.la \ + libtp-a_c-provider.la libtp-a_c-define.la +noinst_PROGRAMS = gen-ust-events-constructor-a \ + uses_heap + if NO_SHARED # Build the shared library as a static archive if shared libraries # are disabled. @@ -21,10 +26,12 @@ else # only built static by default FORCE_SHARED_LIB_OPTIONS = -module -shared -avoid-version \ -rpath $(abs_builddir) + +noinst_LTLIBRARIES += libtp-so-provider.la libtp-so-define.la \ + libtp-so_c-provider.la libtp-so_c-define.la +noinst_PROGRAMS += gen-ust-events-constructor-so endif -noinst_LTLIBRARIES = libtp-so-provider.la libtp-so-define.la \ - libtp-a-provider.la libtp-a-define.la # dynamic libraries libtp_so_provider_la_SOURCES = \ @@ -39,6 +46,16 @@ libtp_so_define_la_SOURCES = \ libtp_so_define_la_LDFLAGS = \ $(FORCE_SHARED_LIB_OPTIONS) +libtp_so_c_provider_la_SOURCES = \ + tp-so_c-provider.c \ + tp-so_c.h +libtp_so_c_provider_la_LDFLAGS = $(FORCE_SHARED_LIB_OPTIONS) + +libtp_so_c_define_la_SOURCES = \ + tp-so_c-define.c \ + tp-so_c.h +libtp_so_c_define_la_LDFLAGS = $(FORCE_SHARED_LIB_OPTIONS) + # static archives libtp_a_provider_la_SOURCES = \ tp-a-provider.cpp \ @@ -48,9 +65,16 @@ libtp_a_define_la_SOURCES = \ tp-a-define.cpp \ tp-a.h -noinst_PROGRAMS = gen-ust-events-constructor -gen_ust_events_constructor_SOURCES = \ - main.cpp \ +libtp_a_c_provider_la_SOURCES = \ + tp-a_c-provider.c \ + tp-a_c.h + +libtp_a_c_define_la_SOURCES = \ + tp-a_c-define.c \ + tp-a_c.h + + +gen_ust_events_constructor_so_SOURCES = main.cpp \ 01-tp-before-define.cpp \ 02-define-tp.cpp \ 03-tp-after-define.cpp \ @@ -59,11 +83,31 @@ gen_ust_events_constructor_SOURCES = \ obj.cpp \ obj.h \ tp.h -gen_ust_events_constructor_LDADD = $(UST_LIBS) \ - $(builddir)/libtp-so-define.la \ - $(builddir)/libtp-so-provider.la \ - $(builddir)/libtp-a-define.la \ - $(builddir)/libtp-a-provider.la \ - $(top_builddir)/tests/utils/libtestutils.la \ - $(DL_LIBS) +gen_ust_events_constructor_so_LDADD = $(UST_LIBS) \ + $(builddir)/libtp-so-define.la \ + $(builddir)/libtp-so-provider.la \ + $(builddir)/libtp-so_c-define.la \ + $(builddir)/libtp-so_c-provider.la \ + $(top_builddir)/tests/utils/libtestutils.la \ + $(DL_LIBS) + +gen_ust_events_constructor_a_SOURCES = main-a.cpp \ + 01-tp-before-define.cpp \ + 02-define-tp.cpp \ + 03-tp-after-define.cpp \ + 04-tp-provider.cpp \ + 05-tp-after-provider.cpp \ + obj-a.cpp \ + obj-a.h \ + tp.h +gen_ust_events_constructor_a_LDADD = $(UST_LIBS) \ + $(builddir)/libtp-a-define.la \ + $(builddir)/libtp-a-provider.la \ + $(builddir)/libtp-a_c-define.la \ + $(builddir)/libtp-a_c-provider.la \ + $(top_builddir)/tests/utils/libtestutils.la \ + $(DL_LIBS) + +uses_heap_SOURCES = uses_heap.cpp + endif