mirror of
git://projects.qi-hardware.com/ben-wpan.git
synced 2024-11-19 09:01:34 +02:00
7c1383d43e
- atusd/Makefile: - AUTHORS, atusd/Makefile, atusd/dtc123.lib, atusd/dtc123je.fpd: borrowed the DTC123 symbol (Alvaro Lopes) and footprint (Dave Ball) from gta02-core. Note that this isn't the part I'm using in my prototype, and I'm trying to get rid of it entirely, so all this will change before too long. - components/BOOKSHELF, components/INFO, components/balun.lib, modules/Makefile, modules/INFO, modules/0805-6.fpd: added the Wuerth 748421245 balun makefile
14 lines
205 B
Makefile
14 lines
205 B
Makefile
MODULES=0805-6 meander mini-usb pads qfn qfp stdpass xtal-4
|
|
|
|
.SUFFIXES: .fpd .mod
|
|
.PHONY: all clean
|
|
|
|
all: $(MODULES:%=%.mod)
|
|
|
|
clean:
|
|
rm -f *~*.fpd
|
|
rm -f $(MODULES:%=%.mod)
|
|
|
|
.fpd.mod:
|
|
fped -k $< $@
|