From 391072ec48e8a1f81c1a9ff933d1c66c58d580b3 Mon Sep 17 00:00:00 2001 From: Dan White Date: Thu, 2 Feb 2012 20:52:53 -0600 Subject: [PATCH] Move ft4232 project to separate dir --- sch-pcb/usbio/Makefile | 26 +++++++++++++++++++++++++ sch-pcb/usbio/gafrc | 1 + sch-pcb/usbio/gafrc-libraries | 1 + sch-pcb/usbio/gschemrc | 1 + sch-pcb/{devboard => usbio}/usbio-1.sch | 0 5 files changed, 29 insertions(+) create mode 100644 sch-pcb/usbio/Makefile create mode 120000 sch-pcb/usbio/gafrc create mode 120000 sch-pcb/usbio/gafrc-libraries create mode 120000 sch-pcb/usbio/gschemrc rename sch-pcb/{devboard => usbio}/usbio-1.sch (100%) diff --git a/sch-pcb/usbio/Makefile b/sch-pcb/usbio/Makefile new file mode 100644 index 0000000..9873ac8 --- /dev/null +++ b/sch-pcb/usbio/Makefile @@ -0,0 +1,26 @@ + +PROJ=usbio +SCHEMATICS=$(wildcard $(PROJ)-*.sch) + + +.PHONY: drc +drc: $(PROJ).drc + +.PHONY: sch +sch: + gschem $(SCHEMATICS) & + + +.PHONY: renum +renum: $(SCHEMATICS) + refdes_renum --gentle --pgskip 100 $(SCHEMATICS) + + +$(PROJ).drc: $(SCHEMATICS) + gnetlist -g drc2 -o $@ $^ + grep ^ERROR $@ && mv $@ $@.err + + +clean: + rm -f *sch~ + diff --git a/sch-pcb/usbio/gafrc b/sch-pcb/usbio/gafrc new file mode 120000 index 0000000..868a210 --- /dev/null +++ b/sch-pcb/usbio/gafrc @@ -0,0 +1 @@ +../gafrc \ No newline at end of file diff --git a/sch-pcb/usbio/gafrc-libraries b/sch-pcb/usbio/gafrc-libraries new file mode 120000 index 0000000..1d6d312 --- /dev/null +++ b/sch-pcb/usbio/gafrc-libraries @@ -0,0 +1 @@ +../gafrc-libraries \ No newline at end of file diff --git a/sch-pcb/usbio/gschemrc b/sch-pcb/usbio/gschemrc new file mode 120000 index 0000000..a22d298 --- /dev/null +++ b/sch-pcb/usbio/gschemrc @@ -0,0 +1 @@ +../gschemrc \ No newline at end of file diff --git a/sch-pcb/devboard/usbio-1.sch b/sch-pcb/usbio/usbio-1.sch similarity index 100% rename from sch-pcb/devboard/usbio-1.sch rename to sch-pcb/usbio/usbio-1.sch -- 2.25.1