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
commit8981905196909d0461f54e7355edc35438630dc3 (patch)
tree1a792b34ba6f5fd111192f871634fdd5eea86e4d
parent854398a6d4a6d63004b7375cea6137edf892ec92 (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 eed8b65..4cd3cd6 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -23,8 +23,8 @@ FONT_DIR = misc
FONT_FILES = \
cursor
-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