1
0
mirror of git://projects.qi-hardware.com/eda-tools.git synced 2025-04-21 12:27:27 +03:00

Generate script boom-config that lists all the database paths, like pkg-config

- boom/Makefile: generate boom-config
- boom/boom-config.in: template for boom-config script
- boom/Makefile (EQU, INV, DSC, CHR): use boom-config
- boom/test/Makefile (EQU, INV, DSC, CHR): use boom-config
This commit is contained in:
Werner Almesberger
2010-10-17 19:58:59 -03:00
parent 281dda5e09
commit 0a86c10803
3 changed files with 42 additions and 16 deletions

View File

@@ -2,12 +2,10 @@ BOOM=PATH=/home/moko/svn.openmoko.org/trunk/eda/boom:../boom:$$PATH boom
KITS = 1
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)
EQU = $(shell ../boom-config equ)
INV = $(shell ../boom-config inv)
DSC = $(shell ../boom-config dsc)
CHR = $(shell ../boom-config chr)
.PHONY: all show again spotless