mirror of
git://projects.qi-hardware.com/eda-tools.git
synced 2024-11-19 11:33:44 +02:00
36048db468
- boom/count.pl: count characterized parts, with type and manufacturer breakdown - boom/Makefile (count): new target to run count.pl
47 lines
915 B
Makefile
47 lines
915 B
Makefile
BOOM=PATH=/home/moko/svn.openmoko.org/trunk/eda/boom:../boom:$$PATH boom
|
|
|
|
KITS = 1
|
|
|
|
DIST = dk
|
|
MANU = avx johanson 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 count
|
|
|
|
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)
|
|
|
|
count:
|
|
perl ./count.pl $(CHR)
|