From 05d3d580df05c67de32fb3251d5aae94b630a83c Mon Sep 17 00:00:00 2001 From: Roland McGrath Date: Sat, 3 May 2003 09:08:37 +0000 Subject: [PATCH] * sysdeps/gnu/Makefile (generated): Append errlist-compat.c here, ... * stdio-common/Makefile: ... not here. * csu/Makefile ($(objpfx)initfini.s): Depend on $(before-compile). * sysdeps/gnu/Makefile ($(objpfx)errlist-compat.c): Likewise. --- ChangeLog | 8 ++++++++ csu/Makefile | 2 +- sysdeps/gnu/Makefile | 9 ++++++--- 3 files changed, 15 insertions(+), 4 deletions(-) diff --git a/ChangeLog b/ChangeLog index 5652021..8861468 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,11 @@ +2003-05-03 Roland McGrath + + * sysdeps/gnu/Makefile (generated): Append errlist-compat.c here, ... + * stdio-common/Makefile: ... not here. + + * csu/Makefile ($(objpfx)initfini.s): Depend on $(before-compile). + * sysdeps/gnu/Makefile ($(objpfx)errlist-compat.c): Likewise. + 2003-05-02 Ulrich Drepper * sysdeps/unix/sysv/linux/s390/semtimedop.c: New file. diff --git a/csu/Makefile b/csu/Makefile index 213f135..2559993 100644 --- a/csu/Makefile +++ b/csu/Makefile @@ -106,7 +106,7 @@ CFLAGS-initfini.s = -g0 -fPIC -fno-inline-functions vpath initfini.c $(full_config_sysdirs) -$(objpfx)initfini.s: initfini.c +$(objpfx)initfini.s: initfini.c $(before-compile) $(compile.c) -S $(CFLAGS-initfini.s) -finhibit-size-directive \ $(patsubst -f%,-fno-%,$(exceptions)) -o $@ diff --git a/sysdeps/gnu/Makefile b/sysdeps/gnu/Makefile index 591b6ce..8221764 100644 --- a/sysdeps/gnu/Makefile +++ b/sysdeps/gnu/Makefile @@ -1,4 +1,5 @@ -# Copyright (C) 1996,97,98,99,2001,02 Free Software Foundation, Inc. +# Copyright (C) 1996,1997,1998,1999,2001,2002,2003 +# Free Software Foundation, Inc. # This file is part of the GNU C Library. # The GNU C Library is free software; you can redistribute it and/or @@ -34,9 +35,10 @@ ifeq ($(subdir),stdio-common) vpath errlist.c $(full_config_sysdirs) ifeq ($(versioning),yes) $(objpfx)errlist-compat.c: errlist.c $(..)sysdeps/gnu/errlist-compat.awk \ - $(common-objpfx)Versions.v.i + $(common-objpfx)Versions.v.i $(before-compile) else -$(objpfx)errlist-compat.c: errlist.c $(..)sysdeps/gnu/errlist-compat.awk +$(objpfx)errlist-compat.c: errlist.c $(..)sysdeps/gnu/errlist-compat.awk \ + $(before-compile) endif $(AWK) -v maxerr=`\ $(CC) -S $(CPPFLAGS) $(CFLAGS) -DNOT_IN_libc -DEMIT_ERR_MAX $< -o - \ @@ -47,6 +49,7 @@ endif # Make it unwritable so noone will edit it by mistake. -chmod a-w $@T mv -f $@T $@ +generated += errlist-compat.c # This will force the generation above to happy if need be. $(foreach o,.d $(object-suffixes),$(objpfx)errlist$o):$(objpfx)errlist-compat.c -- 2.7.4