1
0
mirror of git://projects.qi-hardware.com/eda-tools.git synced 2024-11-22 21:32:29 +02:00
eda-tools/boom/Makefile
Werner Almesberger d816e82d1e Added AVX general-purpose ceramic SMT capacitors, "no series"
- dist/dk/Makefile (PARTS), dist/dk/avx-cersmt.catq: added AVX ceramic SMT
  capacitors
- manu/avx/Makefile, manu/avx/avx.gen: generate AVX capacitor
  characteristics
- Makefile (MANU): added AVX
2010-10-17 13:55:44 -03:00

44 lines
867 B
Makefile

BOOM=PATH=/home/moko/svn.openmoko.org/trunk/eda/boom:../boom:$$PATH boom
KITS = 1
DIST = dk
MANU = avx murata panasonic stackpole tdk yageo
EQU = dist/all.equ
INV = dist/all.inv
DSC = dist/all.dsc
CHR = $(foreach m,$(MANU),manu/$(m)/$(m).chr)
DB = $(EQU) $(INV) $(DSC) $(CHR) \
$(DIST:%=dist/%/db/*.equ) \
$(DIST:%=dist/%/db/*.inv) \
$(DIST:%=dist/%/db/*.dsc)
.PHONY: all show again spotless tar
all: show
show: test.ord $(DSC)
$(BOOM) prettyord -t $^
again:
$(MAKE) spotless
$(MAKE) all
test.ord: test.par $(INV) $(EQU)
$(BOOM) part2order $(KITS) $^ >$@ || { rm -f $@; exit 1; }
test.par: $(EQU) $(INV) $(CHR) test.lst test.sub
$(BOOM) bom2part $^ >$@ || { rm -f $@; exit 1; }
test.lst: test.mbq
perl ./mbq2lst $^ >$@ || { rm -f $@; exit 1; }
spotless:
rm -f test.lst test.par test.ord
tar:
tar cfj boom-db.tar.bz2 $(DB)