Root/components/Makefile

Source at commit 9aff31b82149ea30ba9a2420507fcf483b035719 created 11 years 11 months ago.
By Werner Almesberger, components/Makefile: target "missing" to list components missing in EXPAND
1#
2# From http://svn.openmoko.org/trunk/gta02-core/components/
3#
4# Note that we don't have the concept of a "library of everything" so far.
5#
6
7.PHONY: all sch catalog missing clean spotless
8
9all: sch
10
11# @echo "make what ? targets: sch loe"
12# @exit 1
13
14sch:
15        eeschema `pwd`/components.sch
16
17DESCR-dcm: *.dcm
18        ../scripts/dcm2desc -L . >$@ || { rm -f $@; exit 1; }
19
20catalog: DESCR-dcm
21        genex -p -L . EXPAND DESCR-dcm >catalog.pdf || \
22          { rm -f catalog.pdf; exit 1; }
23
24missing:
25        ../scripts/missing-in-tree -L . EXPAND
26
27#loe:
28# ./mkloe
29
30clean:
31        rm -f DESCR-dcm
32
33spotless: clean
34        rm -f catalog.pdf
35

Archive Download this file

Branches:
master



interactive