summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlan Coopersmith <Alan.Coopersmith@sun.com>2005-07-19 02:40:05 +0000
committerAlan Coopersmith <Alan.Coopersmith@sun.com>2005-07-19 02:40:05 +0000
commitcda281021d5295613a0b7f2411c880b1896d81fd (patch)
treeaffb070a7afe569d84a8d8cca6ca32edc717bac0
parent171269bd1aa24634cb397e787495c96308bd981b (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 b68553b..283d001 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -22,8 +22,8 @@
FONT_DIR = misc
FONT_FILES = arabic24
-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