diff options
author | Loren J. Rittle <ljrittle@acm.org> | 2001-10-17 04:17:09 +0000 |
---|---|---|
committer | Loren J. Rittle <ljrittle@gcc.gnu.org> | 2001-10-17 04:17:09 +0000 |
commit | 33129152a081d7764163e104a7d3c889b134740c (patch) | |
tree | 3a1b367fdfdca5ccacf0e21da2bcc7502ce259ce | |
parent | f88c65f7e37e6842e6ea3c84022a16f9fa9492c8 (diff) | |
download | gcc-33129152a081d7764163e104a7d3c889b134740c.zip gcc-33129152a081d7764163e104a7d3c889b134740c.tar.gz gcc-33129152a081d7764163e104a7d3c889b134740c.tar.bz2 |
Makefile.am (test.o): Find tests/test.c in $(srcdir).
* Makefile.am (test.o): Find tests/test.c in $(srcdir).
* Makefile.in: Rebuilt.
From-SVN: r46304
-rw-r--r-- | boehm-gc/ChangeLog | 5 | ||||
-rw-r--r-- | boehm-gc/Makefile.am | 2 | ||||
-rw-r--r-- | boehm-gc/Makefile.in | 4 |
3 files changed, 8 insertions, 3 deletions
diff --git a/boehm-gc/ChangeLog b/boehm-gc/ChangeLog index f91eab3..ff94d2b 100644 --- a/boehm-gc/ChangeLog +++ b/boehm-gc/ChangeLog @@ -1,3 +1,8 @@ +2001-10-16 Loren J. Rittle <ljrittle@acm.org> + + * Makefile.am (test.o): Find tests/test.c in $(srcdir). + * Makefile.in: Rebuilt. + 2001-10-16 Bryce McKinlay <bryce@waitaki.otago.ac.nz> * Makefile.am, acinclude.m4, configure.in: Imported GC 6.1 Alpha 1 and diff --git a/boehm-gc/Makefile.am b/boehm-gc/Makefile.am index 5cbba05..736c2b5 100644 --- a/boehm-gc/Makefile.am +++ b/boehm-gc/Makefile.am @@ -51,7 +51,7 @@ check_PROGRAMS = gctest # The following hack produces a warning from automake, but we need it in order # to build a file from a subdirectory. FIXME. test.o: tests/test.c - $(COMPILE) -c tests/test.c + $(COMPILE) -c $(srcdir)/tests/test.c # Using $< in the above seems to fail with the HP/UX on Itanium make. gctest_OBJECTS = test.o diff --git a/boehm-gc/Makefile.in b/boehm-gc/Makefile.in index 1dd426f..5c5da84 100644 --- a/boehm-gc/Makefile.in +++ b/boehm-gc/Makefile.in @@ -1,4 +1,4 @@ -# Makefile.in generated automatically by automake 1.4-p1 from Makefile.am +# Makefile.in generated automatically by automake 1.4 from Makefile.am # Copyright (C) 1994, 1995-8, 1999 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation @@ -550,7 +550,7 @@ mostlyclean distclean maintainer-clean # The following hack produces a warning from automake, but we need it in order # to build a file from a subdirectory. FIXME. test.o: tests/test.c - $(COMPILE) -c tests/test.c + $(COMPILE) -c $(srcdir)/tests/test.c $(all_objs) : include/private/gcconfig.h include/private/gc_priv.h \ include/private/gc_hdrs.h include/gc.h include/gc_gcj.h include/gc_mark.h |