diff options
| author | Alan Coopersmith <Alan.Coopersmith@sun.com> | 2005-07-19 02:40:05 +0000 |
|---|---|---|
| committer | Alan Coopersmith <Alan.Coopersmith@sun.com> | 2005-07-19 02:40:05 +0000 |
| commit | 4fde33f2dc38995d54b34dc340e7adabcbc0f9ed (patch) | |
| tree | cf6368ecb06d5161056db32d0e5ce75d565a2767 | |
| parent | 00c1d5cef5e2ba90cfc6c05e02ec9c87bdb10d1f (diff) | |
Convert $(foreach...) to more portable suffix substitution rules
| -rw-r--r-- | Makefile.am | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile.am b/Makefile.am index 66e46c1..62a4d2a 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 |
