mirror of
git://projects.qi-hardware.com/ben-wpan.git
synced 2024-11-05 11:33:09 +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
24 lines
354 B
Makefile
24 lines
354 B
Makefile
NAME = atusd
|
|
|
|
.PHONY: all gen generate sch brd xpdf
|
|
|
|
all: dtc123je.mod
|
|
@echo "make what ? target: gen sch brd xpdf"
|
|
@exit 1
|
|
|
|
gen generate:
|
|
eeschema --plot `pwd`/atusd.sch
|
|
# need scripts
|
|
|
|
sch:
|
|
eeschema `pwd`/atusd.sch
|
|
|
|
brd:
|
|
pcbnew `pwd`/atusd.brd
|
|
|
|
xpdf:
|
|
xpdf atusd.pdf
|
|
|
|
dtc123je.mod: dtc123je.fpd
|
|
fped -k $< >$@ || { rm -f $@; exit 1; }
|