mirror of
git://projects.qi-hardware.com/eda-tools.git
synced 2024-11-26 22:32:50 +02:00
61bfa83475
- boom/test.mbq, boom/test.sub: moved to boom/test/ - boom/Makefile: moved all items related to running the test to test/Makefile
27 lines
430 B
Makefile
27 lines
430 B
Makefile
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 spotless tar count
|
|
|
|
all: show
|
|
|
|
|
|
spotless:
|
|
|
|
tar:
|
|
tar cfj boom-db.tar.bz2 $(DB)
|
|
|
|
count:
|
|
perl ./count.pl $(CHR)
|