mirror of
git://projects.qi-hardware.com/ben-wpan.git
synced 2024-11-23 04:08:28 +02:00
15 lines
288 B
Makefile
15 lines
288 B
Makefile
|
.PHONY: all
|
||
|
|
||
|
all: Makefile.mkmk
|
||
|
|
||
|
Makefile.mkmk: mkmk ../atusb.drl ../atusb-PCB_Edges.gbr
|
||
|
./mkmk
|
||
|
|
||
|
../atusb.drl: ../atusb.brd
|
||
|
pcbnew --drill `pwd`/../atusb.brd
|
||
|
|
||
|
../atusb-PCB_Edges.gbr: ../atusb.brd
|
||
|
pcbnew --plot=gerber -l PCB_Edges `pwd`/../atusb.brd
|
||
|
|
||
|
-include Makefile.mkmk
|