"Fossies" - the Fresh Open Source Software Archive

Member "FunctionCheck-3.2.0/src/fcdump/Makefile.am" (27 May 2012, 417 Bytes) of package /linux/privat/old/FunctionCheck-3.2.0.tar.gz:


As a special service "Fossies" has tried to format the requested text file into HTML format (style: standard) with prefixed line numbers. Alternatively you can here view or download the uninterpreted source code file.

    1 bin_PROGRAMS = fcdump
    2 
    3 AM_CFLAGS = -g -I../include -I../share
    4 AM_CXXFLAGS = -g -I../include -I../share
    5 
    6 AM_LDFLAGS = -lbfd
    7 
    8 fcdump_SOURCES = \
    9 	demangle.h \
   10 	fc_dump.c \
   11 	fc_dump.h \
   12 	fc_global.h \
   13 	fc_graph.c \
   14 	fc_graph.h \
   15 	fc_names.c \
   16 	fc_names.h
   17 
   18 fcdump_LDADD = ../share/libshare.la
   19 
   20 if DEBUG
   21   AM_CFLAGS += -Wall -O3 -I../include -DFC_ALLOW_DEBUG
   22 else
   23   AM_CFLAGS += -Wall -O3 -I../include -DFC_NO_DEBUG
   24 endif