summaryrefslogtreecommitdiff
path: root/Build/source/utils/jpeg2ps/descrip.mms
diff options
context:
space:
mode:
Diffstat (limited to 'Build/source/utils/jpeg2ps/descrip.mms')
-rw-r--r--Build/source/utils/jpeg2ps/descrip.mms40
1 files changed, 40 insertions, 0 deletions
diff --git a/Build/source/utils/jpeg2ps/descrip.mms b/Build/source/utils/jpeg2ps/descrip.mms
new file mode 100644
index 00000000000..2f50c3d8f82
--- /dev/null
+++ b/Build/source/utils/jpeg2ps/descrip.mms
@@ -0,0 +1,40 @@
+# Makefile for jpeg2ps
+# (C) Thomas Merz 1994-1999
+# Unsupported VMS Makefile for mms, initially provided by
+# Rolf Niepraschk (niepraschk@ptb.de )
+
+# ----------------------------------------------------------------------------
+# VMS version
+#
+# throw out /DEFINE=A4 if you want letter format as default size
+# throw out -DA4 if you want letter format as default size
+# use /DEFINE=KNR for Kernighan/Ritchie compilers
+
+CC=cc
+CCOPT= /DEFINE=A4/PREFIX=ALL/NOWARN
+LDOPT=
+OBJ=OBJ
+EXE=.EXE
+RM=DEL/LOG
+
+.c.$(OBJ) :
+ $(CC) $(CCOPT) $*.c
+
+all : jpeg2ps$(EXE)
+ @ !
+
+jpeg2ps$(EXE) : jpeg2ps.$(OBJ) readjpeg.$(OBJ) asc85ec.$(OBJ) getopt.$(OBJ)
+ LINK $(LDOPT) /EXE=$@ $+
+
+
+clean :
+ @ $ IF F$SEARCH("*.$(OBJ)",).NES."" THEN $(RM) *.$(OBJ);*
+ @ $ IF F$SEARCH("jpeg2ps$(EXE)",).NES."" THEN $(RM) jpeg2ps$(EXE);*
+
+jpeg2ps.$(OBJ) : jpeg2ps.c psimage.h
+
+readjpeg.$(OBJ) : readjpeg.c psimage.h
+
+asc85ec.$(OBJ) : asc85ec.c
+
+getopt.$(OBJ) : getopt.c