diff options
author | Ulrich Drepper <drepper@redhat.com> | 2002-08-31 08:47:35 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2002-08-31 08:47:35 +0000 |
commit | eeae65e3563ff8a7ac2926900c8b3720d87212c6 (patch) | |
tree | dc6e28d0f057b540ce9d632a5999a61ca1db4704 | |
parent | df5e9fa69fc8dc746d5a4faeba894d0e153c3d7c (diff) | |
download | glibc-eeae65e3563ff8a7ac2926900c8b3720d87212c6.tar.gz glibc-eeae65e3563ff8a7ac2926900c8b3720d87212c6.tar.xz glibc-eeae65e3563ff8a7ac2926900c8b3720d87212c6.zip |
Don't use rule for crt%.o, spell it out as rules for crti.o and crtn.o.
-rw-r--r-- | linuxthreads/Makefile | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/linuxthreads/Makefile b/linuxthreads/Makefile index b3f66ff9da..4dce3133af 100644 --- a/linuxthreads/Makefile +++ b/linuxthreads/Makefile @@ -137,7 +137,10 @@ $(objpfx)defs.h: $(objpfx)pt-initfini.s sed -n -e '/@TESTS_BEGIN/,/@TESTS_END/p' $< | \ $(AWK) -f ../csu/defs.awk > $@ -$(objpfx)crt%.o: $(objpfx)crt%.S $(objpfx)defs.h +$(objpfx)crti.o: $(objpfx)crti.S $(objpfx)defs.h + $(compile.S) -g0 $(ASFLAGS-.os) -o $@ + +$(objpfx)crtn.o: $(objpfx)crtn.S $(objpfx)defs.h $(compile.S) -g0 $(ASFLAGS-.os) -o $@ generated += crti.S crtn.S defs.h pt-initfini.s |