summaryrefslogtreecommitdiff
path: root/graphics/pstex/makefile
diff options
context:
space:
mode:
authorNorbert Preining <norbert@preining.info>2019-09-02 13:46:59 +0900
committerNorbert Preining <norbert@preining.info>2019-09-02 13:46:59 +0900
commite0c6872cf40896c7be36b11dcc744620f10adf1d (patch)
tree60335e10d2f4354b0674ec22d7b53f0f8abee672 /graphics/pstex/makefile
Initial commit
Diffstat (limited to 'graphics/pstex/makefile')
-rw-r--r--graphics/pstex/makefile38
1 files changed, 38 insertions, 0 deletions
diff --git a/graphics/pstex/makefile b/graphics/pstex/makefile
new file mode 100644
index 0000000000..2afbab7501
--- /dev/null
+++ b/graphics/pstex/makefile
@@ -0,0 +1,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)