comparison lunakpd1/src/Makefile @ 13:c016671a4b4a

lunakpd1 project started
author Mychaela Falconia <falcon@freecalypso.org>
date Sat, 09 May 2020 00:38:07 +0000
parents
children
comparison
equal deleted inserted replaced
12:ee17927ee326 13:c016671a4b4a
1 BOMS= tallied-bom.txt tallied-bom.csv comptab.txt
2 NETS= sverp.unet bound.unet pcb-netlist.txt
3
4 all: ${BOMS} ${NETS} elements.pcb
5
6 sverp.unet: schem.v pushbutton_wrap.v primitives
7 ueda-sverp -o $@ schem.v pushbutton_wrap.v
8
9 bound.unet: MCL sverp.unet
10 unet-bind -c sverp.unet $@
11
12 pcb-netlist.txt: bound.unet
13 unet2pcb bound.unet $@
14
15 tallied-bom.txt: MCL
16 ueda-mkbom -cr > $@
17
18 tallied-bom.csv: MCL
19 ueda-csvbom > $@
20
21 comptab.txt: MCL
22 ueda-shortbom > $@
23
24 elements.pcb: MCL
25 ueda-getfps -ch | ueda-runm4 > $@
26
27 clean:
28 rm -f *.unet *.txt *.csv errs elements.pcb*