From 58bca0e24edb75a7adb4256ae5c822ea3c84e8b1 Mon Sep 17 00:00:00 2001 From: Werner Almesberger Date: Sat, 16 Oct 2010 08:59:51 -0300 Subject: [PATCH] Corrected build rule for .equ files in boom/dist/dk/ - boom/dist/dk/Makefile: use pattern rule for .equ, so that we can have it in a different directory than the .catq file --- boom/dist/dk/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/boom/dist/dk/Makefile b/boom/dist/dk/Makefile index 92f8c67..5f5ae21 100644 --- a/boom/dist/dk/Makefile +++ b/boom/dist/dk/Makefile @@ -1,7 +1,7 @@ CACHE = query.data EQUS = panasonic-erj stackpole-rmcf -.SUFFIXES: .catq .equ +.PHONY: all all: db/digi-key.dsc db/digi-key.inv @@ -23,5 +23,5 @@ db/digi-key.inv: $(CACHE) perl ./dk-db.pl inv $< >$@ || \ { rm -f $@; exit 1; } -.catq.equ: +db/%.equ: %.catq perl ./dk-catq.pl $< >$@ || { rm -rf $@; exit 1; }