mirror of
git://projects.qi-hardware.com/eda-tools.git
synced 2024-11-16 19:40:37 +02:00
9e9eb89f3b
- boom/Makefile, boom/boom-config.in: add a warning to boom-config that the file is machine-generated - boom/boom-config.in (usage): complain about unrecognized keywords
30 lines
631 B
Makefile
30 lines
631 B
Makefile
DIST = dk
|
|
MANU = avx johanson murata panasonic stackpole tdk yageo
|
|
|
|
EQU = $(shell ./boom-config equ)
|
|
INV = $(shell ./boom-config inv)
|
|
DSC = $(shell ./boom-config dsc)
|
|
CHR = $(shell ./boom-config chr)
|
|
|
|
DB = $(EQU) $(INV) $(DSC) $(CHR)
|
|
|
|
|
|
.PHONY: all spotless tar count
|
|
|
|
all: boom-config
|
|
|
|
boom-config: boom-config.in Makefile
|
|
sed -e 's/##WARN##/*** MACHINE-GENERATED. DO NOT EDIT ! ***/' \
|
|
-e 's/##DIST##/$(DIST)/;s/##MANU##/$(MANU)/' boom-config.in \
|
|
>$@ || { rm -f $@; exit 1; }
|
|
chmod 755 boom-config
|
|
|
|
spotless:
|
|
rm -f boom-config
|
|
|
|
tar:
|
|
tar cfj boom-db.tar.bz2 boom-config $(DB)
|
|
|
|
count:
|
|
perl ./count.pl $(CHR)
|