~ubuntu-branches/ubuntu/intrepid/ecl/intrepid

« back to all changes in this revision

Viewing changes to src/gc/Makefile.am

  • Committer: Bazaar Package Importer
  • Author(s): Peter Van Eynde
  • Date: 2006-06-21 09:21:21 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20060621092121-txz1f21lj0wh0f67
Tags: 0.9h-20060617-1
* New upstream version
* Updated standards version without real changes. 

Show diffs side-by-side

added added

removed removed

Lines of Context:
95
95
test_cpp_SOURCES = tests/test_cpp.cc
96
96
test_cpp_LDADD = ./libgc.la ./libgccpp.la $(THREADDLLIBS) $(UNWINDLIBS) $(EXTRA_TEST_LIBS)
97
97
 
98
 
TESTS = gctest $(extra_checks)
 
98
TESTS = $(check_PROGRAMS)
99
99
 
100
100
## FIXME: relies on internal code generated by automake.
101
101
all_objs = @addobjs@ $(libgc_la_OBJECTS)
105
105
include/gc_mark.h @addincludes@
106
106
 
107
107
## FIXME: we shouldn't have to do this, but automake forces us to.
 
108
if COMPILER_XLC
 
109
  ## XLC neither requires nor tolerates the unnecessary assembler goop
 
110
  ASM_CPP_OPTIONS =
 
111
else
 
112
  ## We use -Wp,-P to strip #line directives.  Irix `as' chokes on
 
113
  ## these.
 
114
  ASM_CPP_OPTIONS = -Wp,-P -x assembler-with-cpp
 
115
endif
108
116
.s.lo:
109
117
## We use -Wp,-P to strip #line directives.  Irix `as' chokes on
110
118
## these.
111
 
        $(LTCOMPILE) -Wp,-P -x assembler-with-cpp -c $<
 
119
        $(LTCOMPILE) $(ASM_CPP_OPTIONS) -c $<
112
120
 
113
121
## We have our own definition of LTCOMPILE because we want to use our
114
122
## CFLAGS, not those passed in from the top level make.