1
0
mirror of git://projects.qi-hardware.com/eda-tools.git synced 2024-07-02 23:03:17 +03:00
eda-tools/boom/Makefile
Werner Almesberger 9e9eb89f3b Make boom-config complain about usage errors.
- 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
2010-10-17 20:15:48 -03:00

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)