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
commita32872dd10221e2d919126c5edc319a6f8495c71 (patch)
treea21f1fc0761951bc1bfa5255265070d1d1be16ec
parent14174bd97ecfbbb35a18aeac1ea96acbe8cf8aba (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 7cd9e2b..d52881d 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -25,8 +25,8 @@ FONT_FILES = \
hanglm16 \
hanglm24
-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