mirror of
git://projects.qi-hardware.com/kicad-libs.git
synced 2024-11-22 13:50:37 +02:00
03ca12f429
"catalog" generates a catalog using genex.
32 lines
544 B
Makefile
32 lines
544 B
Makefile
#
|
|
# From http://svn.openmoko.org/trunk/gta02-core/components/
|
|
#
|
|
# Note that we don't have the concept of a "library of everything" so far.
|
|
#
|
|
|
|
.PHONY: all sch catalog clean spotless
|
|
|
|
all: sch
|
|
|
|
# @echo "make what ? targets: sch loe"
|
|
# @exit 1
|
|
|
|
sch:
|
|
eeschema `pwd`/components.sch
|
|
|
|
DESCR-dcm: *.dcm
|
|
../scripts/dcm2desc -L . >$@ || { rm -f $@; exit 1; }
|
|
|
|
catalog: DESCR-dcm
|
|
genex -p -L . EXPAND DESCR-dcm >catalog.pdf || \
|
|
{ rm -f catalog.pdf; exit 1; }
|
|
|
|
#loe:
|
|
# ./mkloe
|
|
|
|
clean:
|
|
rm -f DESCR-dcm
|
|
|
|
spotless: clean
|
|
rm -f catalog.pdf
|