File: Makefile.am

package info (click to toggle)
libitpp 4.0.4-2
  • links: PTS, VCS
  • area: main
  • in suites: lenny
  • size: 7,520 kB
  • ctags: 6,341
  • sloc: cpp: 51,608; sh: 9,248; makefile: 636; fortran: 8
file content (16 lines) | stat: -rw-r--r-- 487 bytes parent folder | download | duplicates (8)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
include $(top_srcdir)/Makefile.common
include $(srcdir)/sources.mk

noinst_LTLIBRARIES = libmath.la 
if ENABLE_DEBUG
noinst_LTLIBRARIES += libmath_debug.la
endif

libmath_la_SOURCES = $(h_base_math_sources) $(cpp_base_math_sources)
libmath_la_CXXFLAGS = $(CXXFLAGS_OPT)

libmath_debug_la_SOURCES = $(h_base_math_sources) $(cpp_base_math_sources)
libmath_debug_la_CXXFLAGS = $(CXXFLAGS_DEBUG)

pkgincludedir = $(includedir)/@PACKAGE@/base/math
pkginclude_HEADERS = $(h_base_math_sources)