1
0
mirror of git://projects.qi-hardware.com/eda-tools.git synced 2024-07-01 02:23:16 +03:00

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
This commit is contained in:
Werner Almesberger 2010-10-16 08:59:51 -03:00
parent df88430d48
commit 58bca0e24e

View File

@ -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; }