]> Gitweb @ Texas Instruments - Open Source Git Repositories - git.TI.com/gitweb - ipc/ipcdev.git/blob - linux/src/utils/Makefile.am
Moved files from the ipc3x_dev branch in syslink_qnx repository into direct
[ipc/ipcdev.git] / linux / src / utils / Makefile.am
1 # src/utils/Makefile.am
3 # additional include paths necessary to compile the library
4 AM_CFLAGS = -I$(top_srcdir)/linux/include -I$(top_srcdir)/packages -D_GNU_SOURCE -Wall @AM_CFLAGS@
6 ###############################################################################
7 # THE LIBRARIES TO BUILD
8 ###############################################################################
10 # the library names to build (note we are building shared libs)
11 lib_LTLIBRARIES = libtiipcutils.la
13 # where to install the headers on the system
14 libtiipcutils_ladir = $(includedir)
16 # the list of header files that belong to the library (to be installed later)
17 libtiipcutils_la_HEADERS =    \
18                         $(top_srcdir)/linux/include/Std.h
20 # the sources to add to the library and to add to the source distribution
21 libtiipcutils_la_SOURCES =    \
22                         $(libtiipcutils_la_HEADERS) \
23                         $(top_srcdir)/linux/include/ladclient.h \
24                         $(top_srcdir)/linux/include/_lad.h \
25                         $(top_srcdir)/linux/include/_MultiProc.h \
26                         $(top_srcdir)/linux/include/net/rpmsg.h \
27                         $(top_srcdir)/packages/ti/ipc/MultiProc.h \
28                         LAD_client.c \
29                         MultiProc.c \
30                         SocketFxns.c
32 # Add version info to the shared library
33 libtiipcutils_la_LDFLAGS = -version-info 1:0:0
35 ###############################################################################