From 735ac5cb6596ac7219881a8be1b215825de9401b Mon Sep 17 00:00:00 2001 From: Dmitri Pal Date: Mon, 13 Jul 2009 19:35:31 -0400 Subject: ELAPI First part of the interface This is just a part of the interface, a beginning. Most likely some of the functions will be altered but it is a starting point. For example in future there will be a way to override some of the parts of the default template using the application configuration file. Removed obfuscation of the data types based on discussion with Simo. --- common/Makefile.am | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) (limited to 'common/Makefile.am') diff --git a/common/Makefile.am b/common/Makefile.am index d3329c9b1..445a84356 100644 --- a/common/Makefile.am +++ b/common/Makefile.am @@ -1,5 +1,5 @@ ACLOCAL_AMFLAGS = -I m4 -SUBDIRS = trace collection ini dhash path_utils +SUBDIRS = trace collection ini dhash path_utils elapi if SINGLELIB # Build all components as a single shared library lib_LTLIBRARIES = libsssd_util.la @@ -7,11 +7,12 @@ libsssd_util_la_SOURCES = libsssd_util_la_LIBADD = \ collection/libcollection.la \ ini/libini_config.la \ - dhash/libdhash.la + dhash/libdhash.la \ + elapi/libelapi.la libsssd_util_la_CFLAGS = $(AM_CFLAGS) \ -I ./collection \ -I ./ini \ -I ./dhash \ + -I ./elapi \ -I ./trace endif - -- cgit