2010-10-16 05:58:57 +03:00
|
|
|
CACHE = query.data
|
2010-10-16 16:55:11 +03:00
|
|
|
EQUS = panasonic-erj stackpole-rmcf yageo-rc
|
2010-10-16 05:58:57 +03:00
|
|
|
|
2010-10-16 14:59:51 +03:00
|
|
|
.PHONY: all
|
2010-10-16 05:58:57 +03:00
|
|
|
|
|
|
|
all: db/digi-key.dsc db/digi-key.inv
|
|
|
|
|
|
|
|
$(CACHE): db/digi-key.equ
|
|
|
|
awk '/^#END/ { exit } /^DIGI-KEY / { print $$2 }' $< | \
|
|
|
|
perl ./dk-db.pl query \
|
|
|
|
`[ -r $(CACHE) ] && echo '' -i $(CACHE)` >_$@ || \
|
|
|
|
{ rm -f $@ _$@; exit 1; }
|
|
|
|
mv _$@ $@
|
|
|
|
|
|
|
|
db/digi-key.equ: $(EQUS:%=db/%.equ)
|
|
|
|
cat $^ >$@ || { rm -rf $@; exit 1; }
|
|
|
|
|
|
|
|
db/digi-key.dsc: $(CACHE)
|
|
|
|
perl ./dk-db.pl dsc $< >$@ || \
|
|
|
|
{ rm -f $@; exit 1; }
|
|
|
|
|
|
|
|
db/digi-key.inv: $(CACHE)
|
|
|
|
perl ./dk-db.pl inv $< >$@ || \
|
|
|
|
{ rm -f $@; exit 1; }
|
|
|
|
|
2010-10-16 14:59:51 +03:00
|
|
|
db/%.equ: %.catq
|
2010-10-16 05:58:57 +03:00
|
|
|
perl ./dk-catq.pl $< >$@ || { rm -rf $@; exit 1; }
|