blob: 405a2ede27aaf607705015000ff860ed293d6d74 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
# file : libcommon/common/Makefile.am
# author : Boris Kolpackov <boris@codesynthesis.com>
# copyright : Copyright (c) 2009-2011 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)
AM_CPPFLAGS = -I'$(top_builddir)/libcommon' -I'$(top_srcdir)/libcommon'
AM_CPPFLAGS += -DLIBCOMMON_DYNAMIC_LIB
AM_LDFLAGS = -no-undefined -rpath '$(libdir)'
|