changeset 19:b3dffadff287

lunakpd1/pcb/Makefile added
author Mychaela Falconia <falcon@freecalypso.org>
date Sat, 09 May 2020 08:13:26 +0000
parents 8d93467a4260
children 54e5edfe2f04
files .hgignore lunakpd1/pcb/Makefile
diffstat 2 files changed, 26 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/.hgignore	Sat May 09 08:08:42 2020 +0000
+++ b/.hgignore	Sat May 09 08:13:26 2020 +0000
@@ -15,6 +15,7 @@
 ^lcdtest1/pcb/gerbers\.
 ^lcdtest1/schem\+bom/elements\.pcb$
 
+^lunakpd1/pcb/gerbers\.
 ^lunakpd1/placetool/placetool$
 ^lunakpd1/src/elements\.pcb$
 
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/lunakpd1/pcb/Makefile	Sat May 09 08:13:26 2020 +0000
@@ -0,0 +1,25 @@
+ALL=	gerbers.zip lunakpd1_pcb.ps lunakpd1_pcb.pdf
+EXPARG=
+
+all:	${ALL}
+
+.SUFFIXES:	.ps .pdf
+
+.ps.pdf:
+	ps2pdf $*.ps
+
+lunakpd1_pcb.ps:	lunakpd1.pcb
+	pcb -x ps --psfile $@ ${EXPARG} lunakpd1.pcb
+
+gerbers.d:	lunakpd1.pcb
+	-rm -rf $@
+	mkdir $@
+	pcb -x gerber --gerberfile gerbers.d/lunakpd1 ${EXPARG} lunakpd1.pcb
+
+gerbers.zip:	gerbers.d
+	-rm -f $@
+	cd gerbers.d; zip ../gerbers.zip *
+
+clean:
+	rm -f *.ps *.pdf lunakpd1.pcb-
+	rm -rf gerbers.*