Root/atusb-pgm/Makefile

Source at commit 5392401c0acbabadccf1e47abe59f05e25db9a7f created 12 years 9 months ago.
By Werner Almesberger, tools/atrf-rssi/: added menu for regulation area selection
1PLOT_BRD = pcbnew --plot=ps_a4 --ps-pads-drill-opt=none --fill-all-zones
2
3NAME = atusb-pgm
4
5.PHONY: all sch brd front back clean
6
7all:
8        @echo "make what ? target: sch brd front back clean"
9        @exit 1
10
11sch:
12        eeschema `pwd`/$(NAME).sch
13
14brd:
15        pcbnew `pwd`/$(NAME).brd
16
17front: $(NAME)-Front.ps
18        lpr $<
19
20back: $(NAME)-Back.ps
21        lpr $<
22
23%-Front.ps: %.brd
24        $(PLOT_BRD) -l Front --mirror $<
25
26%-Back.ps: %.brd
27        $(PLOT_BRD) -l Back $<
28
29clean:
30        rm -f $(NAME)-Front.ps $(NAME)-Back.ps
31        rm -f $(NAME).drl $(NAME)-PCB_Edges.gbr
32

Archive Download this file



interactive