mirror of
git://projects.qi-hardware.com/ben-wpan.git
synced 2024-12-23 20:56:45 +02:00
a0b064bd79
- mkmk: call generated makefile "Makefile.mkmk" - Makefile: generate mkmk prerequisites, run mkmk, and execute targets in Makefile.mkmk
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
|