BlinkenArea - GitList
Repositories
Blog
Wiki
Chaosknoten
Code
Commits
Branches
Tags
Search
Tree:
58f033b
Branches
Tags
master
Chaosknoten
Makefile
initial checkin of Chaosknoten
Stefan Schuermans
commited
58f033b
at 2019-05-09 20:59:54
Makefile
Blame
History
Raw
NAMES = Chaosknoten 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 clean: tidy rm -f *.net *.pdf