1
0
mirror of git://projects.qi-hardware.com/eda-tools.git synced 2024-07-05 04:46:42 +03:00
eda-tools/boom/dist/dk/Makefile
Werner Almesberger 58bca0e24e 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
2010-10-16 08:59:51 -03:00

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