File: Makefile.am

package info (click to toggle)
dune-common 2.2.0-1
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 1,980 kB
  • sloc: cpp: 19,387; sh: 1,872; makefile: 421
file content (19 lines) | stat: -rw-r--r-- 608 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# $Id: $
dunemodulelibdir=$(libdir)

EXTRA_DIST = dunemodules.lib
dunemodulelib_DATA = dunemodules.lib

#the dune-common library
lib_LTLIBRARIES = libdunecommon.la

# this is just a renaming of libcommon to prevent name clashes
libdunecommon_la_SOURCES =
# This forces automake to use the C++ linker
# (see the automake manual, section "Libtool Convenience Libraries")
nodist_EXTRA_libdunecommon_la_SOURCES = dummy.cc
sourcescheck_DUMMY = dummy.cc
libdunecommon_la_LIBADD = ../dune/common/libcommon.la
libdunecommon_la_LDFLAGS = -release $(subst -,,$(PACKAGE_VERSION))

include $(top_srcdir)/am/global-rules