summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlan Coopersmith <Alan.Coopersmith@sun.com>2005-07-19 02:40:06 +0000
committerAlan Coopersmith <Alan.Coopersmith@sun.com>2005-07-19 02:40:06 +0000
commite36ad8fd67868eff93e8125f7f54ac97af08402e (patch)
treeed6b716e15ddc6b32b3fea6b1b9ceb459e2db7a3
parentef4585efc4105abdba4db58942f8e5e34f26b95d (diff)
Convert $(foreach...) to more portable suffix substitution rules
-rw-r--r--Makefile.am4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile.am b/Makefile.am
index ef2ba1d..587a0be 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -23,8 +23,8 @@ FONT_DIR = cyrillic
FONT_FILES = \
proof9x16
-BDF_FILES = $(foreach X, $(FONT_FILES), $(X).bdf)
-PCF_FILES = $(foreach X, $(FONT_FILES), $(X).pcf.gz)
+BDF_FILES = $(FONT_FILES:%=%.bdf)
+PCF_FILES = $(FONT_FILES:%=%.pcf.gz)
SUFFIXES = .bdf .pcf.gz