blob: d42cff28141b890f4cc36e7b49c68cbd501ff38d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
# file : libcommon/Makefile.am
# author : Boris Kolpackov <boris@codesynthesis.com>
# copyright : Copyright (c) 2009-2010 Code Synthesis Tools CC
# license : GNU GPL v2; see accompanying LICENSE file
noinst_LTLIBRARIES = libcommon.la
libcommon_la_SOURCES = __path__(sources) __path__(headers)
EXTRA_DIST = __file__(extra_dist)
libcommon_la_CPPFLAGS= -I'$(builddir)' -I'$(srcdir)' -DLIBCOMMON_DYNAMIC_LIB
libcommon_la_LDFLAGS = -no-undefined -rpath '$(libdir)'
|