summaryrefslogtreecommitdiff
path: root/graphics/pstex/makefile.msc
blob: 2afbab750110954cc665a9edfaa063b41c4f0392 (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
# The following file and directory specifications may need changing at
# your site:
#
# where is the header file to be found?
HDRDIR=A:\\TEX\\BIN
HDRFILE=$(HDRDIR)\\jtex.ps
PSPATH=.
#
#
# By default we will use PK > GF > PXL format files.
#
# how to global font registration
# include a -DGLOBAL_FONT below
# and edit "jtex.ps" file	/bop0  -> /bop1
#				/bop1  -> /bop0
#

#CFLAGS = /AL /Fs /Zi /Od /W2 /DDEBUG
CFLAGS = /AL
#LDFLAGS = /Fm /AL /Zi /Od 
LDFLAGS = /AL

MAKE = make makefile
RM = rm -rf

.c.obj:
	cl /c $(CFLAGS) $*.c

OBJ	= pstex.obj args.obj fopenp.obj

pstex.obj: pstex.c std.h args.h

args.obj: args.c std.h args.h

fopenp.obj: fopenp.c std.h

pstex.exe: $(OBJ)
	cl $(LDFLAGS) $(OBJ)