BlinkenArea - GitList
Repositories
Blog
Wiki
bulb
Code
Commits
Branches
Tags
Search
Tree:
112c3b8
Branches
Tags
master
petaflot
1.0.0
1.1.0
1.1.1
bulb
electrics
Makefile
version 1.0.0
Stefan Schuermans
commited
112c3b8
at 2012-06-06 19:01:39
Makefile
Blame
History
Raw
NAMES = bulb GNETLIST = gnetlist GSCHEM = gschem PCB = pcb PS2PDF = ps2pdf .PHONY: all nets pdfs tidy clean .SUFFIXES: all: nets pdfs tidy nets: $(addsuffix .net,$(NAMES)) pdfs: $(addsuffix .sch.pdf,$(NAMES)) $(addsuffix .pcb.pdf,$(NAMES)) %.net: %.sch $(GNETLIST) -q -g PCB -o $@ $< %.sch.ps: %.sch $(GSCHEM) -p -s gschem-print.scm -o $@ $< %.pcb.ps: %.pcb $(PCB) -x ps --psfile $@ --media A4 --ps-color --fill-page $< %.pdf: %.ps $(PS2PDF) $< $@ tidy: rm -f *~ *- *.log *.ps rm -rf bulb-electrics-* clean: tidy rm -f *.net *.pdf