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
commit72c76794c7fed9db4aa3ceb3c9032b436ba58a68 (patch)
tree28f85eccf69effba9bb631e2b14e4c86e5c3d841
parentb4bc7920c657165fb96c0941f501f1ff942bcc82 (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 5df34ec..a240093 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -37,8 +37,8 @@ FONT_FILES = \
koi9x18b \
koi9x18
-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