1
0
mirror of git://projects.qi-hardware.com/ben-wpan.git synced 2024-11-17 20:09:41 +02:00

atusb/Makefile: replaced board name by $(NAME) or pattern

This commit is contained in:
Werner Almesberger 2011-01-17 22:35:55 -03:00
parent 38fe79863a
commit 7d91ee60c6

View File

@ -1,5 +1,7 @@
PLOT_BRD = pcbnew --plot=ps_a4 --ps-pads-drill-opt=none --fill-all-zones PLOT_BRD = pcbnew --plot=ps_a4 --ps-pads-drill-opt=none --fill-all-zones
NAME = atusb
.PHONY: all gen generate sch brd xpdf front back clean .PHONY: all gen generate sch brd xpdf front back clean
all: all:
@ -7,22 +9,22 @@ all:
@exit 1 @exit 1
gen generate: gen generate:
eeschema --plot `pwd`/atusb.sch eeschema --plot `pwd`/$(NAME).sch
# need scripts # need scripts
sch: sch:
eeschema `pwd`/atusb.sch eeschema `pwd`/$(NAME).sch
brd: brd:
pcbnew `pwd`/atusb.brd pcbnew `pwd`/$(NAME).brd
xpdf: xpdf:
xpdf atusb.pdf xpdf $(NAME).pdf
front: atusb-Front.ps front: $(NAME)-Front.ps
lpr $< lpr $<
back: atusb-Back.ps back: $(NAME)-Back.ps
lpr $< lpr $<
# #
@ -36,12 +38,12 @@ back: atusb-Back.ps
# larger (!) than designed. # larger (!) than designed.
# #
atusb-Front.ps: atusb.brd %-Front.ps: %.brd
$(PLOT_BRD) -l Front --mirror $< $(PLOT_BRD) -l Front --mirror $<
atusb-Back.ps: atusb.brd %-Back.ps: %.brd
$(PLOT_BRD) -l Back $< $(PLOT_BRD) -l Back $<
clean: clean:
rm -f atusb-Front.ps atusb-Back.ps rm -f $(NAME)-Front.ps $(NAME)-Back.ps
rm -f atusb.drl atusb-PCB_Edges.gbr rm -f $(NAME).drl $(NAME)-PCB_Edges.gbr