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
commit42b88df1147d736e79682e3d89d7df534624e79a (patch)
tree5748a88cc03f150c19ed9c9f37ed1d53a172edbd
parent18b545de677611818d3ce9d757756207534e491a (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 5843c2f..7d70bed 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -25,8 +25,8 @@ FONT_FILES = \
gb16st \
gb24st
-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