Changeset 1b49ff in git for libpolys/reporter/Makefile.am


Ignore:
Timestamp:
Mar 23, 2011, 6:00:22 PM (13 years ago)
Author:
Oleksandr Motsak <motsak@…>
Branches:
(u'spielwiese', 'fe61d9c35bf7c61f2b6cbf1b56e25e2f08d536cc')
Children:
630ca96539668c0d4cc157cc95f84f9a08e7d663
Parents:
53ca3d94166d37edb1866aebb7bb4d2fc87ade0d
git-author:
Oleksandr Motsak <motsak@mathematik.uni-kl.de>2011-03-23 18:00:22+01:00
git-committer:
Mohamed Barakat <mohamed.barakat@rwth-aachen.de>2011-11-09 12:04:12+01:00
Message:
ADD: AM_PROG_CC_C_O is needed for automake's per-C-Flags
FIX: reporter debug/optimized flags
File:
1 edited

Legend:

Unmodified
Added
Removed
  • libpolys/reporter/Makefile.am

    r53ca3d r1b49ff  
    11lib_LIBRARIES=libreporter.a libreporter_g.a
    22
    3 AM_CFLAGS       = -O3 -w -fomit-frame-pointer ${PIPE}
    4 CXXTEMPLFLAGS   = -fno-implicit-templates --no-exceptions
    5 AM_CXXFLAGS     = -O3 -w -fomit-frame-pointer --no-rtti ${PIPE} ${CXXTEMPLFLAGS}
    6 INCLUDES        = -I${top_srcdir}/.. -I${top_srcdir}/../.. -I${top_builddir}/..
    7 AM_CPPFLAGS     = -DNDEBUG -DOM_NDEBUG -DHAVE_CONFIG_H
     3CXXTEMPLFLAGS = -fno-implicit-templates --no-exceptions
    84
    9 SOURCES = dError.c reporter.cc
     5libreporter_a_CFLAGS   = -O3 -fomit-frame-pointer ${PIPE}
     6libreporter_g_a_CFLAGS = ${PIPE}
    107
    11 libreporter_a_SOURCES = $(SOURCES)
     8libreporter_a_CXXFLAGS   = -O3 -fomit-frame-pointer --no-rtti ${PIPE} ${CXXTEMPLFLAGS}
     9libreporter_g_a_CXXFLAGS = -g -Wextra -Wall -pedantic -Wno-long-long ${PIPE} ${CXXTEMPLFLAGS}
     10# -fdiagnostics-show-option
    1211
    13 libreporter_a_includedir=$(includedir)/libpolys/reporter
     12libreporter_a_CPPFLAGS   = -DNDEBUG -DOM_NDEBUG -DHAVE_CONFIG_H
     13libreporter_g_a_CPPFLAGS = -DHAVE_CONFIG_H
    1414
    15 libreporter_a_include_HEADERS = reporter.h
     15INCLUDES = -I${top_srcdir}/.. -I${top_srcdir}/../.. -I${top_builddir}/..
    1616
     17SOURCES  = dError.c reporter.cc
     18libreporter_a_SOURCES   = $(SOURCES)
    1719libreporter_g_a_SOURCES = $(SOURCES)
    1820
    19 libreporter_g_a_CXXFLAGS = -g -Wextra -Wall -pedantic -Wno-long-long
    20 # -fdiagnostics-show-option
     21libreporter_a_includedir  =$(includedir)/libpolys/reporter
     22libreporter_g_a_includedir=$(includedir)/libpolys/reporter
     23
     24REPORTERHEADERS = reporter.h
     25libreporter_a_include_HEADERS   = $(REPORTERHEADERS)
     26libreporter_g_a_include_HEADERS = $(REPORTERHEADERS)
     27
     28
     29
Note: See TracChangeset for help on using the changeset viewer.