home *** CD-ROM | disk | FTP | other *** search
/ Mega Top 1 / os2_top1.zip / os2_top1 / APPS / TEKST / CMTEX330 / SOURCE / MAKEFILE < prev    next >
Text File  |  1991-09-30  |  809b  |  38 lines

  1. SRC = align.c alloc.c arith.c box.c boxlist.c chr.c \
  2.     cmd.c cond.c def.c dvi.c error.c eval.c expand.c \
  3.     fileio.c hyph.c math.c mathlist.c mlst-hlst.c \
  4.     pack.c page.c par.c print.c \
  5.     scan.c str.c sym.c tex.c texext.c \
  6.     tfm.c tok.c toklist.c
  7.  
  8. OBJ = align.o alloc.o arith.o box.o boxlist.o chr.o \
  9.     cmd.o cond.o def.o dvi.o error.o eval.o expand.o \
  10.     fileio.o hyph.o math.o mathlist.o mlst-hlst.o \
  11.     pack.o page.o par.o print.o \
  12.     scan.o str.o sym.o tex.o texext.o \
  13.     tfm.o tok.o toklist.o
  14.  
  15. CFLAGS = -g -Bstatic
  16.  
  17.  
  18. initex: ${OBJ}
  19.     ${CC} ${CFLAGS} ${OBJ} -o $@
  20.  
  21. tex: initex
  22.     -./initex 'plain \dump'
  23.     undump tex initex
  24.     rm core
  25.  
  26. latex: initex
  27.     -./initex 'lplain \dump'
  28.     undump latex initex
  29.     rm core
  30.  
  31. all: initex tex latex
  32.  
  33. clean::
  34.     -rm -f *.o errs
  35.  
  36. veryclean::clean
  37.     -rm -f initex tex latex *.log *.dvi *.aux
  38.