mirror of
git://projects.qi-hardware.com/eda-tools.git
synced 2024-11-23 09:48:26 +02:00
58bca0e24e
- boom/dist/dk/Makefile: use pattern rule for .equ, so that we can have it in a different directory than the .catq file
28 lines
655 B
Makefile
28 lines
655 B
Makefile
CACHE = query.data
|
|
EQUS = panasonic-erj stackpole-rmcf
|
|
|
|
.PHONY: all
|
|
|
|
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; }
|
|
|
|
db/%.equ: %.catq
|
|
perl ./dk-catq.pl $< >$@ || { rm -rf $@; exit 1; }
|