From a32872dd10221e2d919126c5edc319a6f8495c71 Mon Sep 17 00:00:00 2001 From: Alan Coopersmith Date: Tue, 19 Jul 2005 02:40:06 +0000 Subject: Convert $(foreach...) to more portable suffix substitution rules --- Makefile.am | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile.am b/Makefile.am index 7cd9e2b..d52881d 100644 --- a/Makefile.am +++ b/Makefile.am @@ -25,8 +25,8 @@ FONT_FILES = \ hanglm16 \ hanglm24 -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 -- cgit v1.2.3