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
commitb06ba6676e27edade37a156bc77a54e902719c95 (patch)
tree1ad851fa6abdec4ac42f5e3e6396ff488a156e4d
parent239b6bf90950c96fc20c5c680e9e86aeaa5cee97 (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 5804cf1..8e9f5a1 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -50,8 +50,8 @@ FONT_FILES = \
term14 \
termB14
-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