diff options
author | tromey <tromey@138bc75d-0d04-0410-961f-82ee72b054a4> | 1999-11-03 01:11:03 +0000 |
---|---|---|
committer | tromey <tromey@138bc75d-0d04-0410-961f-82ee72b054a4> | 1999-11-03 01:11:03 +0000 |
commit | 0d639e3ac93d463964f82e263e31ee75fed393f4 (patch) | |
tree | 876c7fff5693520a285274c0cfcfb8580e9d84f3 /boehm-gc/Makefile.am | |
parent | f770745a86a9bf1aeee340370198c6a5ef93fee3 (diff) | |
download | gcc-0d639e3ac93d463964f82e263e31ee75fed393f4.tar.gz |
* configure: Rebuilt.
* configure.in: Don't create boehm-config.h.
* Makefile.in: Rebuilt.
* Makefile.am (libgcjgc_la_SOURCES): Reference gcconfig.h, not
config.h.
($(all_objs)): Depend on gcconfig.h.
* gc_priv.h: Reference GCCONFIG_H, not CONFIG_H.
* gcconfig.h: Define GCCONFIG_H, not CONFIG_H.
* config.h: Removed.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@30358 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'boehm-gc/Makefile.am')
-rw-r--r-- | boehm-gc/Makefile.am | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/boehm-gc/Makefile.am b/boehm-gc/Makefile.am index 6ab97ff2612..be15848ac9d 100644 --- a/boehm-gc/Makefile.am +++ b/boehm-gc/Makefile.am @@ -26,7 +26,7 @@ endif toolexeclib_LTLIBRARIES = $(target_all) EXTRA_LTLIBRARIES = libgcjgc.la libgcjgc_la_SOURCES = allchblk.c alloc.c blacklst.c checksums.c \ -config.h dbg_mlc.c dyn_load.c finalize.c gc.h gc_alloc.h gc_cpp.h \ +gcconfig.h dbg_mlc.c dyn_load.c finalize.c gc.h gc_alloc.h gc_cpp.h \ gc_hdrs.h gc_mark.h gc_priv.h gc_private.h gc_typed.h headers.c \ irix_threads.c linux_threads.c malloc.c mallocx.c mark.c mark_rts.c \ misc.c new_hblk.c obj_map.c os_dep.c pcr_interface.c ptr_chck.c \ @@ -52,7 +52,7 @@ TESTS = gctest ## FIXME: relies on internal code generated by automake. all_objs = @addobjs@ $(libgcjgc_la_OBJECTS) -$(all_objs) : config.h gc_priv.h gc_hdrs.h gc.h gc_mark.h +$(all_objs) : gcconfig.h gc_priv.h gc_hdrs.h gc.h gc_mark.h ## FIXME: we shouldn't have to do this, but automake forces us to. .s.lo: |