mirror of
git://projects.qi-hardware.com/kicad-libs.git
synced 2024-11-22 13:50:37 +02:00
c2feac59f7
From ben-wpan, but with two additional parameters: - orientation: left or right (measurements are only correct for right; fped's measurement system doesn't understand mirroring) - PCB thickness: this determines the size of the "tail" added. We assume a zero-sized tail (as in TI's original design) works best for a 1.0 mm PCB.
19 lines
325 B
Makefile
19 lines
325 B
Makefile
MODULES=8_10-card bat-clip-aa-th \
|
|
fiducial meander-2.4GHz mini-usb pads pads-array \
|
|
qfn qfp sot sot-323 ssop stdpass \
|
|
usb-a-pcb usb_a_plug_smt
|
|
|
|
.SUFFIXES: .fpd .mod
|
|
.PHONY: all clean
|
|
|
|
all: $(MODULES:%=%.mod)
|
|
|
|
clean:
|
|
rm -f *~*.fpd
|
|
|
|
spotless: clean
|
|
rm -f $(MODULES:%=%.mod)
|
|
|
|
.fpd.mod:
|
|
fped -k $< $@
|