Files @ 1f6399f54ece
Branch filter:

Location: Copyleft/guide/GPL-Business/Makefile

bkuhn
Rework & expand discussion: express patent license

Upon consultation with Richard Fontana, we drafted together this rewrite
of the original paragraph discussing this issue.

The original paragraph was tersely written and indeed accurate.
However, it was likely comprehensible only to those already familiar
with patent licensing regimes and systems. As such, it fit poorly in
the tutorial, which is designed for all policy makers who care about
copyleft, who may in fact be new to patent policy and licensing.

Please note: Richard Fontana <fontana@sharpeleven.org> dictated to me
some of this text, and therefore he is likely a copyright and
"creator" (per CC-BY-SA 4.0) of some of this text. In fact, since we
wrote it collaboratively, I suspect Fontana and I are co-copyright
holders and co-creators of this commit.

FILTER = ./filter-doc.plx
PDFLATEX = pdflatex
LATEX = latex
#BIBTEX = bibtex
BIBTEX = /bin/true
FIG2DEV = fig2dev
DVIPS=dvips

all:	gpl-business.pdf gpl-business.ps

.SUFFIXES: .fig .postscript .eps .pdf .pstex_t .pstex

.postscript.pdf:
	ps2pdf $< $@

.postscript.eps:
	ps2epsi $< $@

.fig.pdf:
	$(FIG2DEV) -L pdf -p "portrait" -c $< > $@

.fig.pstex_t:
	$(FIG2DEV) -L pstex_t $< > $@

.fig.pstex:
	$(FIG2DEV) -L pstex $< > $@

PDF_FIGS =

gpl-business.pdf: gpl-business-pdf.tex gpl-business-pdf.bbl $(PDF_FIGS)
	$(PDFLATEX) gpl-business-pdf
	$(PDFLATEX) gpl-business-pdf
	/bin/mv gpl-business-pdf.pdf gpl-business.pdf

gpl-business-pdf.tex: gpl-business.tex 
	cat gpl-business.tex | $(FILTER) PDF > gpl-business-pdf.tex

gpl-business-pdf.bbl: gpl-business-pdf.tex $(PDF_FIGS)
	$(PDFLATEX) gpl-business-pdf
	$(BIBTEX) gpl-business-pdf

PS_FIGS = 

gpl-business-ps.tex: gpl-business.tex 
	cat gpl-business.tex | $(FILTER) PS > gpl-business-ps.tex

gpl-business-ps.bbl: gpl-business-ps.tex $(PS_FIGS)
	$(LATEX) gpl-business-ps
	$(BIBTEX) gpl-business-ps

gpl-business-ps.dvi: gpl-business-ps.tex gpl-business-ps.bbl $(PS_FIGS)
	$(LATEX) gpl-business-ps
	$(LATEX) gpl-business-ps

gpl-business.ps: gpl-business-ps.dvi
	$(DVIPS) $< -o $@

clean:
	/bin/rm -f gpl-business-ps.* gpl-business-pdf.* gpl-business.pdf gpl-business.ps $(PDF_FIGS) $(PS_FIGS) gpl-business.log texput.log