home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Fresh Fonts 1
/
freshfonts1.bin
/
programs
/
amiga
/
pastex
/
macros
/
latex2e
/
base
/
makefile
< prev
next >
Wrap
Makefile
|
1994-06-03
|
1KB
|
49 lines
########################################################################
# Start of customization section
########################################################################
# The directory where all runtime files reside
DESTDIR=
# The directory where the format files reside
FORMATDIR=
######### Edit the following only if you want to place *.fd to a
######### different place.
# The directory where the .fd files reside:
FDDIR=$(DESTDIR)
# The directory where class and package files reside:
INPUTDIR=$(DESTDIR)
########################################################################
# End of customization section
########################################################################
FORMAT=latex
default:
@if test ! "${DESTDIR}" -o ! "$(FORMATDIR)" ; then \
echo "Destination directories not set." ; \
echo "Please edit the Makefile first!" ; \
exit 1 ; \
else \
make format ; \
fi
format: $(FORMAT).fmt
$(FORMAT).fmt: $(FORMAT).ltx
initex $(FORMAT).ltx
install: $(FORMAT).fmt
mv -i $(FORMAT).fmt $(FORMATDIR)
mv -i *.fd $(FDDIR)
mv -i *.cls *.clo *.sty *.def *.tex $(INPUTDIR)