36 lines
587 B
Makefile
36 lines
587 B
Makefile
VERSION=1.2
|
|
Scheme=scheme
|
|
STEXLIB=/usr/lib/stex$(VERSION)
|
|
|
|
# define default document pathname here
|
|
# override on command line with 'make x=newdoc'
|
|
x = ???
|
|
|
|
# define latex processor: latex or pdflatex
|
|
latex = pdflatex
|
|
|
|
# define stex macro files here
|
|
stexmacrofiles =
|
|
|
|
# list bibliography files here
|
|
bib =
|
|
|
|
# define index if an index is to be generated
|
|
# index=yes
|
|
|
|
include $(STEXLIB)/Mf-stex
|
|
|
|
# define or override suffixes here
|
|
|
|
# define any additional targets here
|
|
|
|
# define any dependencies here
|
|
|
|
# define cleanup targets here:
|
|
|
|
$(x).clean:
|
|
|
|
$(x).reallyclean:
|
|
|
|
$(x).reallyreallyclean:
|