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
commitf63198574832c385c6517517441e3489c948c98b (patch)
tree969c491879e0ac052de4475ade99e97ac0341aba
parent64ea6aacad62eb974d8a0d9d4a28b34602182aba (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 05c1600..b8d1585 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -24,8 +24,8 @@ FONT_FILES = \
screen8x16b \
screen8x16
-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