mirror of
git://projects.qi-hardware.com/ben-wpan.git
synced 2024-11-04 22:45:19 +02:00
51de2a5235
- cntr/Makefile: oops, forgot to add this one to the repository - cntr/cntr.brd: fill unused spaces with ground
19 lines
252 B
Makefile
19 lines
252 B
Makefile
.PHONY: all gen generate sch brd xpdf
|
|
|
|
all:
|
|
@echo "make what ? target: gen sch brd xpdf"
|
|
@exit 1
|
|
|
|
gen generate:
|
|
eeschema --plot `pwd`/cntr.sch
|
|
# need scripts
|
|
|
|
sch:
|
|
eeschema `pwd`/cntr.sch
|
|
|
|
brd:
|
|
pcbnew `pwd`/cntr.brd
|
|
|
|
xpdf:
|
|
xpdf cntr.pdf
|