Root/atusb-pgm/Makefile

Source at commit c98b91656ab1fe28a01da138044005bf7d84853a created 13 years 24 days ago.
By Werner Almesberger, usrp/fft.c: added support for averaging of FFT results before dumping
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