diff options
author | Roland McGrath <roland@gnu.org> | 1996-06-05 19:22:44 +0000 |
---|---|---|
committer | Roland McGrath <roland@gnu.org> | 1996-06-05 19:22:44 +0000 |
commit | df7c0d2312a2133aece4a390ce05c756c5e452a5 (patch) | |
tree | 0c18425a4045eecff03c12ed81c36c429b4723da | |
parent | aa592a63f9c6541bc4661eed409b89248a58f311 (diff) | |
download | glibc-df7c0d2312a2133aece4a390ce05c756c5e452a5.zip glibc-df7c0d2312a2133aece4a390ce05c756c5e452a5.tar.gz glibc-df7c0d2312a2133aece4a390ce05c756c5e452a5.tar.bz2 |
Wed Jun 5 15:10:58 1996 Roland McGrath <roland@delasyd.gnu.ai.mit.edu>
* Make-dist [subdir-dirs]: Set vpath for %, not just %.c.
-rw-r--r-- | Make-dist | 2 | ||||
-rw-r--r-- | Makerules | 4 | ||||
-rw-r--r-- | locale/Makefile | 1 |
3 files changed, 4 insertions, 3 deletions
@@ -76,7 +76,7 @@ foo:=$(shell echo 'stub/generic +sysdeps=$(+sysdeps)'>&2) foo:=$(shell echo '+sysdep-names=$(+sysdep-names)' >&2) ifdef subdir-dirs -vpath %.c $(addprefix $(subdir)/,$(subdir-dirs)) +vpath % $(addprefix $(subdir)/,$(subdir-dirs)) endif # Now find all the sysdep versions of those files. @@ -793,8 +793,8 @@ distinfo: Makefile $(..)Makerules define distinfo-vars rm -f $@.new -$(foreach var,subdir subdir-dirs sources elided-routines headers distribute \ - dont_distribute generated others tests \ +$(foreach var,subdir subdir-dirs sources elided-routines sysdep_routines \ + headers distribute dont_distribute generated others tests \ extra-libs $(extra-libs:%=%-routines), echo >> $@.new '$(var) := $($(var))') echo >> $@.new 'sources += $$(addsuffix .c,$$(elided-routines))' diff --git a/locale/Makefile b/locale/Makefile index e0618c0..5038519 100644 --- a/locale/Makefile +++ b/locale/Makefile @@ -37,6 +37,7 @@ install-bin = localedef locale extra-objs = $(localedef-modules:=.o) $(locale-modules:=.o) \ $(lib-modules:=.o) +subdir-dirs = programs vpath %.c programs vpath %.h programs |