mirror of
git://projects.qi-hardware.com/ben-wpan.git
synced 2024-11-04 23:49:42 +02:00
9eefe60b8a
- Makefile: "make sch", "make brd", plus a few placeholders - wpan-atrf.sch, usb.sch, atrf.sch: schematics sheets (with little on) - components/INFO, components/at86rf230.lib, components/at86rf230.dcm
19 lines
272 B
Makefile
19 lines
272 B
Makefile
.PHONY: all gen generate sch brd xpdf
|
|
|
|
all:
|
|
@echo "make what ? target: gen sch xpdf brd"
|
|
@exit 1
|
|
|
|
gen generate:
|
|
eeschema --plot `pwd`/wpan-atrf.sch
|
|
# need scripts
|
|
|
|
xpdf:
|
|
xpdf wpan-atrf.pdf
|
|
|
|
sch:
|
|
eeschema `pwd`/wpan-atrf.sch
|
|
|
|
brd:
|
|
pcbnew `pwd`/wpan-atrf.brd
|