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
commit87733cd9324e1e1db2d0f283a59c46d344e99e16 (patch)
tree964780d564cdf059b62e259121e8beb8177ccab1
parentf2f5a27d7f57d4b27aaf12d7d14343d4463c9d4b (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 0c1f717..1330f06 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -24,8 +24,8 @@ FONT_FILES = \
jiskan16 \
jiskan24
-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