1
0
mirror of git://projects.qi-hardware.com/ben-wpan.git synced 2024-07-07 22:24:11 +03:00
ben-wpan/atusd/Makefile
Werner Almesberger 7c1383d43e Added components (transistor and balun) for the uSD variant.
- 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
2010-09-02 18:15:28 -03:00

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; }