blob: c057b3d316b25f6ace74124b1d950733d68ab9bf (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
|
#
# Makefile for dvips. Edit this first part of the file.
#
# First, the things that absolutely must be edited for your system.
# Please, don't forget to edit MakeTeXPK in the same way!
CC = d:\tcc\tcc.ttp
LD = d:\tcc\tlink.ttp
# change -DDEFRES=300 or whatever is required
# if the default resolution is not 300 dpi,
# add -DDEBUG to turn on debugging capability
# add -DTPIC for tpic support
# add -DFONTLIB to search font libraries
# add -DSEARCH_SUBDIRECTORIES to search the FONTSUBDIRPATH.
# add -DHAVE_GETCWD if you have getcwd (relevant only for subdir searching)
# add -DIBM6000 for compiling on IBM 6000 systems
# add -DCREATIONDATE if your system has a working time() and you want dated files
# (for VM/CMS, see the MKDVIPS.EXEC file in the vmcms subdirectory).
#
# If you define FONTLIB, make sure to also give definitions to
# FLIPATH and FLINAME.
#
# If your compiler doesn't like void*, then add
# -DVOID=char
#
DEFS = -DDEFRES=300 -DCREATIONDATE
# either use
# OPT = -O -funsigned-char
# or
OPT = -DATARIST -K -P -R -W-pro -Id:\tcc\h -Id:\tcc\h\x
# If you are compiling dvips for suid or other privileges, you will
# definitely want to define the following symbol; else don't.
# SECURE = -DSECURE
# If you want EMTEX specials, define the following.
EMTEX = # -DEMTEX
# for SYSV (and friends which use <string.h> instead of <strings.h>)
# define the c-compiler flag
# add -D_POSIX_SOURCE if you are POSIX (also define SYSV) (only relevant
# for subdir searching)
# SYS = -DSYSV
CFLAGS = $(DEFS) $(OPT) $(SYS) $(SECURE) $(EMTEX) $(DEFPFMT)
LDFLAGS =
SRC = dospecial.c dviinput.c fontdef.c loadfont.c dvips.c tfmload.c \
download.c prescan.c scanpage.c skippage.c output.c scalewidth.c \
dosection.c dopage.c resident.c search.c unpack.c drawps.c \
header.c makefont.c repack.c virtualfont.c dpicheck.c finclude.c \
pprescan.c papersiz.c flib.c color.c bbox.c emspecial.c
OBJ = dospecial.o dviinput.o fontdef.o loadfont.o dvips.o tfmload.o \
download.o prescan.o scanpage.o skippage.o output.o scalewidth.o \
dosection.o dopage.o resident.o search.o unpack.o drawps.o \
header.o makefont.o repack.o virtualfont.o dpicheck.o finclude.o \
pprescan.o papersiz.o flib.o color.o bbox.o emspecial.o
all : afm2tfm.ttp dvips.ttp tex.pro texps.pro texc.pro special.pro \
finclude.pro color.pro crop.pro
.c.o:
$(CC) $(CFLAGS) $<
dvips.ttp : $(OBJ)
${LD} -O=dvips.ttp -C=dvips.lnk
afm2tfm.ttp : afm2tfm.o
$(LD) $(LDFLAGS) -O=afm2tfm.ttp $(LIBS) afm2tfm.o $(FLIBS)
$(OBJ) : dvips.h debug.h
flib.o resident.o dvips.o loadfont.o tfmload.o : paths.h
squeeze.ttp : squeeze.o
$(LD) $(LDFLAGS) -O=squeeze.ttp $(LIBS) squeeze.o $(FLIBS)
|