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
commita9107bc812df8cdc6b2ba50d8aa6183269394fd6 (patch)
treebe0018e2b22c7cc68179099698463e367929b969
parent024fd5b9fe443c73cdf85427e119f79a0ee29340 (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 fd0617d..d226cfa 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -30,8 +30,8 @@ FONT_FILES = \
cu-lig12 \
cu-pua12
-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