home *** CD-ROM | disk | FTP | other *** search
Text File | 1992-06-19 | 44.3 KB | 1,219 lines |
- diff -rc gnuplot/graphics.c gnuplot3.2/graphics.c
- *** gnuplot/graphics.c Mon Sep 9 13:13:19 1991
- --- gnuplot3.2/graphics.c Wed Mar 25 07:59:41 1992
- ***************
- *** 1,6 ****
- /* GNUPLOT - graphics.c */
- /*
- ! * Copyright (C) 1986, 1987, 1990, 1991 Thomas Williams, Colin Kelley
- *
- * Permission to use, copy, and distribute this software and its
- * documentation for any purpose with or without fee is hereby granted,
- --- 1,10 ----
- + #ifndef lint
- + static char *RCSid = "$Id: graphics.c,v 3.26 92/03/24 22:34:25 woo Exp Locker: woo $";
- + #endif
- +
- /* GNUPLOT - graphics.c */
- /*
- ! * Copyright (C) 1986, 1987, 1990, 1991, 1992 Thomas Williams, Colin Kelley
- *
- * Permission to use, copy, and distribute this software and its
- * documentation for any purpose with or without fee is hereby granted,
- ***************
- *** 27,37 ****
- * Gershon Elber and many others.
- *
- * Send your comments or suggestions to
- ! * pixar!info-gnuplot@sun.com.
- * This is a mailing list; to join it send a note to
- ! * pixar!info-gnuplot-request@sun.com.
- * Send bug reports to
- ! * pixar!bug-gnuplot@sun.com.
- */
-
- #include <stdio.h>
- --- 31,41 ----
- * Gershon Elber and many others.
- *
- * Send your comments or suggestions to
- ! * info-gnuplot@ames.arc.nasa.gov.
- * This is a mailing list; to join it send a note to
- ! * info-gnuplot-request@ames.arc.nasa.gov.
- * Send bug reports to
- ! * bug-gnuplot@ames.arc.nasa.gov.
- */
-
- #include <stdio.h>
- ***************
- *** 1262,1268 ****
- }
- else if((end - start) >= 5)
- {
- ! lstart = 4; /* 3 per decade */
- linc = 3;
- }
- else
- --- 1266,1272 ----
- }
- else if((end - start) >= 5)
- {
- ! lstart = 2; /* 4 per decade */
- linc = 3;
- }
- else
- ***************
- *** 1270,1276 ****
- lstart = 2; /* 9 per decade */
- linc = 1;
- }
- ! for (ltic = 2; ltic <= 9; ltic++) {
- lticplace = ticplace+log10((double)ltic);
- if ( inrange(lticplace,ticmin,ticmax) )
- ytick(lticplace, "\0", incr, 0.5);
- --- 1274,1280 ----
- lstart = 2; /* 9 per decade */
- linc = 1;
- }
- ! for (ltic = lstart; ltic <= 9; ltic += linc) {
- lticplace = ticplace+log10((double)ltic);
- if ( inrange(lticplace,ticmin,ticmax) )
- ytick(lticplace, "\0", incr, 0.5);
- ***************
- *** 1313,1319 ****
- }
- else if((end - start) >= 5)
- {
- ! lstart = 4; /* 3 per decade */
- linc = 3;
- }
- else
- --- 1317,1323 ----
- }
- else if((end - start) >= 5)
- {
- ! lstart = 2; /* 4 per decade */
- linc = 3;
- }
- else
- diff -rc gnuplot/help.c gnuplot3.2/help.c
- *** gnuplot/help.c Sun Jan 5 21:33:17 1992
- --- gnuplot3.2/help.c Wed Mar 25 07:59:42 1992
- ***************
- *** 1,6 ****
- /* GNUPLOT - help.c */
- /*
- ! * Copyright (C) 1986, 1987, 1990, 1991 Thomas Williams, Colin Kelley
- *
- * Permission to use, copy, and distribute this software and its
- * documentation for any purpose with or without fee is hereby granted,
- --- 1,10 ----
- + #ifndef lint
- + static char *RCSid = "$Id: help.c,v 3.26 92/03/24 22:34:24 woo Exp Locker: woo $";
- + #endif
- +
- /* GNUPLOT - help.c */
- /*
- ! * Copyright (C) 1986, 1987, 1990, 1991, 1992 Thomas Williams, Colin Kelley
- *
- * Permission to use, copy, and distribute this software and its
- * documentation for any purpose with or without fee is hereby granted,
- ***************
- *** 27,37 ****
- * Gershon Elber and many others.
- *
- * Send your comments or suggestions to
- ! * pixar!info-gnuplot@sun.com.
- * This is a mailing list; to join it send a note to
- ! * pixar!info-gnuplot-request@sun.com.
- * Send bug reports to
- ! * pixar!bug-gnuplot@sun.com.
- */
-
- #include <stdio.h>
- --- 31,41 ----
- * Gershon Elber and many others.
- *
- * Send your comments or suggestions to
- ! * info-gnuplot@ames.arc.nasa.gov.
- * This is a mailing list; to join it send a note to
- ! * info-gnuplot-request@ames.arc.nasa.gov.
- * Send bug reports to
- ! * bug-gnuplot@ames.arc.nasa.gov.
- */
-
- #include <stdio.h>
- diff -rc gnuplot/help.h gnuplot3.2/help.h
- *** gnuplot/help.h Thu Jul 18 11:58:45 1991
- --- gnuplot3.2/help.h Wed Mar 25 07:59:43 1992
- ***************
- *** 1,6 ****
- /* GNUPLOT - help.h */
- /*
- ! * Copyright (C) 1986, 1987, 1990, 1991 Thomas Williams, Colin Kelley
- *
- * Permission to use, copy, and distribute this software and its
- * documentation for any purpose with or without fee is hereby granted,
- --- 1,10 ----
- + /*
- + * $Id: help.h,v 3.26 92/03/24 22:34:14 woo Exp Locker: woo $
- + */
- +
- /* GNUPLOT - help.h */
- /*
- ! * Copyright (C) 1986, 1987, 1990, 1991, 1992 Thomas Williams, Colin Kelley
- *
- * Permission to use, copy, and distribute this software and its
- * documentation for any purpose with or without fee is hereby granted,
- ***************
- *** 27,37 ****
- * Gershon Elber and many others.
- *
- * Send your comments or suggestions to
- ! * pixar!info-gnuplot@sun.com.
- * This is a mailing list; to join it send a note to
- ! * pixar!info-gnuplot-request@sun.com.
- * Send bug reports to
- ! * pixar!bug-gnuplot@sun.com.
- */
-
- /* Exit status returned by help() */
- --- 31,41 ----
- * Gershon Elber and many others.
- *
- * Send your comments or suggestions to
- ! * info-gnuplot@ames.arc.nasa.gov.
- * This is a mailing list; to join it send a note to
- ! * info-gnuplot-request@ames.arc.nasa.gov.
- * Send bug reports to
- ! * bug-gnuplot@ames.arc.nasa.gov.
- */
-
- /* Exit status returned by help() */
- diff -rc gnuplot/internal.c gnuplot3.2/internal.c
- *** gnuplot/internal.c Sun Jan 5 21:33:18 1992
- --- gnuplot3.2/internal.c Wed Mar 25 07:59:44 1992
- ***************
- *** 1,6 ****
- /* GNUPLOT - internal.c */
- /*
- ! * Copyright (C) 1986, 1987, 1990, 1991 Thomas Williams, Colin Kelley
- *
- * Permission to use, copy, and distribute this software and its
- * documentation for any purpose with or without fee is hereby granted,
- --- 1,10 ----
- + #ifndef lint
- + static char *RCSid = "$Id: internal.c,v 3.26 92/03/24 22:34:29 woo Exp Locker: woo $";
- + #endif
- +
- /* GNUPLOT - internal.c */
- /*
- ! * Copyright (C) 1986, 1987, 1990, 1991, 1992 Thomas Williams, Colin Kelley
- *
- * Permission to use, copy, and distribute this software and its
- * documentation for any purpose with or without fee is hereby granted,
- ***************
- *** 27,37 ****
- * Gershon Elber and many others.
- *
- * Send your comments or suggestions to
- ! * pixar!info-gnuplot@sun.com.
- * This is a mailing list; to join it send a note to
- ! * pixar!info-gnuplot-request@sun.com.
- * Send bug reports to
- ! * pixar!bug-gnuplot@sun.com.
- */
-
- #include <math.h>
- --- 31,41 ----
- * Gershon Elber and many others.
- *
- * Send your comments or suggestions to
- ! * info-gnuplot@ames.arc.nasa.gov.
- * This is a mailing list; to join it send a note to
- ! * info-gnuplot-request@ames.arc.nasa.gov.
- * Send bug reports to
- ! * bug-gnuplot@ames.arc.nasa.gov.
- */
-
- #include <math.h>
- diff -rc gnuplot/lasergnu gnuplot3.2/lasergnu
- *** gnuplot/lasergnu Tue Sep 10 07:39:25 1991
- --- gnuplot3.2/lasergnu Wed Mar 25 07:59:45 1992
- ***************
- *** 1,5 ****
- --- 1,8 ----
- #!/bin/csh -f
- #
- + # $Id: lasergnu,v 3.26 92/03/24 22:37:01 woo Exp Locker: woo $
- + #
- + #
- # Print gnuplot output on an Imagen or Postscript laser printer.
-
- set print_banner = on # Print a banner page unless told otherwise.
- diff -rc gnuplot/makefile.amg gnuplot3.2/makefile.amg
- *** gnuplot/makefile.amg Thu Sep 12 12:04:16 1991
- --- gnuplot3.2/makefile.amg Wed Mar 25 07:59:46 1992
- ***************
- *** 1,4 ****
- --- 1,8 ----
- # Makefile for SAS/C 5.10 on the Amiga
- + #
- + # $Id: makefile.amg,v 3.26 92/03/24 22:36:53 woo Exp Locker: woo $
- + #
- + #
-
- CC = lc
-
- ***************
- *** 22,28 ****
- term/eepic.trm term/epson.trm term/fig.trm term/hp26.trm \
- term/hp2648.trm term/hpgl.trm term/hpljii.trm term/vws.trm
- CSOURCE6 = term/impcodes.h term/imagen.trm term/object.h \
- ! term/iris4d.trm term/kyo.trm term/latex.trm term/pc.trm \
- term/amiga.trm
- CSOURCE7 = term/post.trm term/qms.trm term/regis.trm term/sun.trm \
- term/t410x.trm term/tek.trm term/unixpc.trm term/unixplot.trm \
- --- 26,32 ----
- term/eepic.trm term/epson.trm term/fig.trm term/hp26.trm \
- term/hp2648.trm term/hpgl.trm term/hpljii.trm term/vws.trm
- CSOURCE6 = term/impcodes.h term/imagen.trm term/object.h \
- ! term/iris4d.trm term/kyo.trm term/latex.trm term/pbm.trm term/pc.trm \
- term/amiga.trm
- CSOURCE7 = term/post.trm term/qms.trm term/regis.trm term/sun.trm \
- term/t410x.trm term/tek.trm term/unixpc.trm term/unixplot.trm \
- diff -rc gnuplot/makefile.ami gnuplot3.2/makefile.ami
- *** gnuplot/makefile.ami Fri Sep 20 11:31:32 1991
- --- gnuplot3.2/makefile.ami Wed Mar 25 07:59:47 1992
- ***************
- *** 1,4 ****
- --- 1,7 ----
- #
- + # $Id: makefile.ami,v 3.26 92/03/24 22:36:54 woo Exp Locker: woo $
- + #
- + #
- # Makefile for the Amiga Pat R. Empleo
- # Sept 1991
- # Manx Aztec C 5.2 beta version
- ***************
- *** 12,18 ****
- # where to install help file gnuplot.gih
- HELPDEST=GNUPLOT:docs/gnuplot.gih
- # Where to send email about bugs and comments (locally)
- ! EMAIL="pixar\!bug-gnuplot@sun.com"
-
- #
- # Manx Aztec C v5.2 compiler options
- --- 15,21 ----
- # where to install help file gnuplot.gih
- HELPDEST=GNUPLOT:docs/gnuplot.gih
- # Where to send email about bugs and comments (locally)
- ! EMAIL="bug-gnuplot@ames.arc.nasa.gov"
-
- #
- # Manx Aztec C v5.2 compiler options
- ***************
- *** 52,58 ****
- term/hp26.trm term/hp2648.trm term/hpgl.trm term/hpljii.trm \
- term/apollo.trm term/gpr.trm
- CSOURCE6 = term/impcodes.h term/imagen.trm term/object.h \
- ! term/iris4d.trm term/kyo.trm term/latex.trm term/pc.trm
- CSOURCE7 = term/post.trm term/qms.trm term/regis.trm term/sun.trm \
- term/t410x.trm term/tek.trm term/unixpc.trm term/unixplot.trm \
- term/v384.trm term/x11.trm term/bigfig.trm term/vws.trm gnuplot_x11.c
- --- 55,61 ----
- term/hp26.trm term/hp2648.trm term/hpgl.trm term/hpljii.trm \
- term/apollo.trm term/gpr.trm
- CSOURCE6 = term/impcodes.h term/imagen.trm term/object.h \
- ! term/iris4d.trm term/kyo.trm term/latex.trm term/pbm.trm term/pc.trm
- CSOURCE7 = term/post.trm term/qms.trm term/regis.trm term/sun.trm \
- term/t410x.trm term/tek.trm term/unixpc.trm term/unixplot.trm \
- term/v384.trm term/x11.trm term/bigfig.trm term/vws.trm gnuplot_x11.c
- diff -rc gnuplot/makefile.msc gnuplot3.2/makefile.msc
- *** gnuplot/makefile.msc Tue Sep 17 08:20:52 1991
- --- gnuplot3.2/makefile.msc Wed Mar 25 07:59:48 1992
- ***************
- *** 1,3 ****
- --- 1,6 ----
- + #
- + # $Id: makefile.msc,v 3.26 92/03/24 22:36:31 woo Exp Locker: woo $
- + #
- # Make file for use with Microsoft C Version 5.10
- # and Microsoft Program Maintenance Utility Version 4.07
- #
- ***************
- *** 27,33 ****
- term\eepic.trm term\epson.trm term\fig.trm term\hp26.trm \
- term\hp2648.trm term\hpgl.trm term\hpljii.trm
- CSOURCE6 = term\impcodes.h term\imagen.trm term\object.h \
- ! term\iris4d.trm term\kyo.trm term\latex.trm term\pc.trm
- CSOURCE7 = term\post.trm term\qms.trm term\regis.trm term\sun.trm \
- term\t410x.trm term\tek.trm term\unixpc.trm term\unixplot.trm \
- term\v384.trm term\x11.trm
- --- 30,36 ----
- term\eepic.trm term\epson.trm term\fig.trm term\hp26.trm \
- term\hp2648.trm term\hpgl.trm term\hpljii.trm
- CSOURCE6 = term\impcodes.h term\imagen.trm term\object.h \
- ! term\iris4d.trm term\kyo.trm term\latex.trm term/pbm.trm term\pc.trm
- CSOURCE7 = term\post.trm term\qms.trm term\regis.trm term\sun.trm \
- term\t410x.trm term\tek.trm term\unixpc.trm term\unixplot.trm \
- term\v384.trm term\x11.trm
- diff -rc gnuplot/makefile.tc gnuplot3.2/makefile.tc
- *** gnuplot/makefile.tc Sat Aug 17 13:51:36 1991
- --- gnuplot3.2/makefile.tc Wed Mar 25 07:59:48 1992
- ***************
- *** 1,3 ****
- --- 1,7 ----
- + #
- + # $Id: makefile.tc,v 3.26 92/03/24 22:36:32 woo Exp Locker: woo $
- + #
- + #
- # make file for Borland C++ 2.0/Turbo C++ 1.0/Turbo C 2.0
- # uses Borland proprietry overlay manager
- # Modified from the TurboC makefile by Maurice Castro
- ***************
- *** 51,57 ****
- term\eepic.trm term\epson.trm term\fig.trm term\hp26.trm \
- term\hp2648.trm term\hpgl.trm term\hpljii.trm
- CSOURCE6 = term\impcodes.h term\imagen.trm term\object.h \
- ! term\iris4d.trm term\kyo.trm term\latex.trm term\pc.trm
- CSOURCE7 = term\post.trm term\qms.trm term\regis.trm term\sun.trm \
- term\t410x.trm term\tek.trm term\unixpc.trm term\unixplot.trm \
- term\v384.trm term\x11.trm
- --- 55,61 ----
- term\eepic.trm term\epson.trm term\fig.trm term\hp26.trm \
- term\hp2648.trm term\hpgl.trm term\hpljii.trm
- CSOURCE6 = term\impcodes.h term\imagen.trm term\object.h \
- ! term\iris4d.trm term\kyo.trm term\latex.trm term/pbm.trm term\pc.trm
- CSOURCE7 = term\post.trm term\qms.trm term\regis.trm term\sun.trm \
- term\t410x.trm term\tek.trm term\unixpc.trm term\unixplot.trm \
- term\v384.trm term\x11.trm
- diff -rc gnuplot/makefile.unx gnuplot3.2/makefile.unx
- *** gnuplot/makefile.unx Sun Jan 5 21:33:19 1992
- --- gnuplot3.2/makefile.unx Tue May 5 21:48:58 1992
- ***************
- *** 1,6 ****
- ############################################################
- #
- ! # GNUPLOT 3.0 Makefile (Unix X11 Motif/Athena support) for
- # Apollo/Sun/Dec5000/IBMrs6000/HP9000/SGI/3B1/386IX/Cray
- #
- # Original version by:
- --- 1,9 ----
- + #
- + # $Id: makefile.unx,v 3.26 92/03/24 22:36:48 woo Exp Locker: woo $
- + #
- ############################################################
- #
- ! # GNUPLOT 3.2 Makefile (Unix X11 support) for
- # Apollo/Sun/Dec5000/IBMrs6000/HP9000/SGI/3B1/386IX/Cray
- #
- # Original version by:
- ***************
- *** 19,30 ****
- # directory where to install executables on 'make install'
- DEST=/usr/local/bin
- # directory for installing man page on 'make man_install'.
- ! MANDEST=/usr/man/manl
- # where to install help file gnuplot.gih
- HELPDEST=/usr/local/lib/gnuplot.gih
- #HELPDEST=docs/gnuplot.gih
- # Where to send email about bugs and comments (locally)
- ! EMAIL=bug-gnuplot%pixar.uucp@sun.com
-
- ############################################################
- #>>> Choose your C compiler and basic compiler flags.
- --- 22,33 ----
- # directory where to install executables on 'make install'
- DEST=/usr/local/bin
- # directory for installing man page on 'make man_install'.
- ! MANDEST=/usr/local/man/manl
- # where to install help file gnuplot.gih
- HELPDEST=/usr/local/lib/gnuplot.gih
- #HELPDEST=docs/gnuplot.gih
- # Where to send email about bugs and comments (locally)
- ! EMAIL=bug-gnuplot@ames.arc.nasa.gov
-
- ############################################################
- #>>> Choose your C compiler and basic compiler flags.
- ***************
- *** 31,36 ****
- --- 34,43 ----
- CC = cc # the C compiler
- COPTS = -O # -O if you trust your compiler's optimizer
- LD =$(CC) $(CFLAGS) # default loading command
- + NPROC = 2
- + RCSOLD = 3.25
- + RCSVER = 3.26
- + RCSCOM = "gnuplot3.2 release6"
-
- ############################################################
- #>>> Choose some optional features.
- ***************
- *** 40,46 ****
- # Otherwise, your normal terminal editing is all you get.
- # Some machines will not support this, and they will turn this
- # option off (for example, apollos running SR10.2 or SR10.3 and
- ! # loaded with BSD4.3 instead of SYS5).
- # NOCWDRC:
- # If NOCWDRC is defined, then any .gnuplot in the current directory
- # is not read on startup. This is a security consideration
- --- 47,56 ----
- # Otherwise, your normal terminal editing is all you get.
- # Some machines will not support this, and they will turn this
- # option off (for example, apollos running SR10.2 or SR10.3 and
- ! # loaded with BSD4.3 instead of SYS5). Note: problems with
- ! # gnuplot prompts have been noted when this feature is selected
- ! # on IBM RS/6000 AIX, and compile errors are encountered on
- ! # Sequent Dynix 3 and Convex OS 9.0.
- # NOCWDRC:
- # If NOCWDRC is defined, then any .gnuplot in the current directory
- # is not read on startup. This is a security consideration
- ***************
- *** 54,97 ****
- # tailoring to your site.
- # Use lasergnu_install to install lasergnu.
- # Use lasergnu_noinstall to not install lasergnu (default).
- ! LASERGNU = lasergnu_noinstall
-
- ############################################################
- # X11 support
- #
-
- ! #>>> List your X11 libraries#
- ! # standard MIT X11 R4: -lXaw -lXmu -lXt -lXext -lX11
- ! # Apollo DomainOS 10.3 (R3/Athena): -L/usr/lib/X11 -lXaw -lXmu -lXt -lX11
- ! # Apollo DomainOS 10.3 (R3/Motif): -L/usr/lib/X11 -lXm -lXtm -lX11
- ! # IBM RS/6000 AIX 3.1 (R3/Athena): -L/usr/lpp/X11/Xamples/lib/Xmu \
- ! # -L/usr/lpp/X11/Xamples/lib/Xaw \
- ! # -lXaw -lXmu -lXt -lXext -lX11
- ! # IBM RS/6000 AIX 3.1 (R3/Motif): -lXm -lXt -lX11
- ! # HP 9000/375 HP-UX 6.5 and 7.0 (R3/Motif): -lXm -lXt -lX11
- ! # Interactive 386/ix with T.Roell X386 and network support:
- ! # -lXaw -lXm -lXt -lXext -lX11 -linet -lpt
- ! X11LIBS = -lXaw -lXmu -lXt -lXext -lX11
-
- ! #>>> List your X11 include directories
- ! # standard MIT X11 R4: -I/usr/include/X11 -I/usr/include/X11/Xaw
- ! # Apollo DomainOS 10.3 (R3/Athena): -I/usr/include/X11
- ! # Apollo DomainOS 10.3 (R3/Motif): -I/usr/include/Xm
- ! # IBM RS/6000 AIX 3.1 (R3/Athena): -I/usr/include/X11 \
- ! # -I/usr/lpp/X11/Xamples/lib/Xaw \
- ! # -I/usr/lpp/X11/Xamples/lib/Xaw/X11
- ! # IBM RS/6000 AIX 3.1 (R3/Motif): -I/usr/include/Xm
- ! # HP 9000/375 HP-UX 6.5 and 7.0 (R3/Motif): -I/usr/include/Xm
- ! # HP 9000/700 HP-UX 8.0 (R4): -I/usr/include/X11R4 \
- ! # -I/usr/include/X11R4/X11/Xaw
- ! X11INCLUDES = -I/usr/include/X11 -I/usr/include/X11/Xaw
-
- #>>> You shouldn't have to change these, since they are controlled by
- #>>> Machine dependent definitions below.
- # Compile option for plot.c and TERMFLAGS, to include X11 support
- PLOTXFLAG = -DX11
- - # this can add to CFLAGS for X11 compilations. Probably needs no change.
- - X11FLAGS =
- # make gnuplot_x11 by default
- GNUPLOT_X11 = gnuplot_x11
- # install gnuplot_x11 by default
- --- 64,90 ----
- # tailoring to your site.
- # Use lasergnu_install to install lasergnu.
- # Use lasergnu_noinstall to not install lasergnu (default).
- ! LASERGNU = lasergnu_install
-
- ############################################################
- # X11 support
- #
-
- ! #>>> List your X11 libraries
- ! X11LIBS = -lX11
-
- ! #>>> List where the X11 include directory is found (if other than /usr/include)
- ! X11INCLUDES =
-
- + #>>> List additional CFLAGS for X11 compilation
- + # -DOLD_SELECT if you have an old 4.2 BSD OS (e.g. Sun OS 3.5) and
- + # encounter compile error for missing include file <sys/select.h>
- + X11FLAGS =
- +
- #>>> You shouldn't have to change these, since they are controlled by
- #>>> Machine dependent definitions below.
- # Compile option for plot.c and TERMFLAGS, to include X11 support
- PLOTXFLAG = -DX11
- # make gnuplot_x11 by default
- GNUPLOT_X11 = gnuplot_x11
- # install gnuplot_x11 by default
- ***************
- *** 124,129 ****
- --- 117,125 ----
- # this is needed by HP-UX and Cray Unicos systems.
- # -DULTRIX_KLUDGE if you run X windows on Ultrix and experience the
- # "every other plot" problem.
- + # -DCRIPPLED_SELECT if "select errors" are encountered with X. This
- + # option is needed on SVR3 platforms with incomplete support for
- + # the BSD select() system call
- # -Dunix is required to explicitly define "unix" for SCO and IBM
- # RS/6000 running AIX 3.1
- # -fswitch if you are compiling on a Sun3 (or even -f68881)
- ***************
- *** 130,136 ****
- # (but -fswitch is buggy on some systems, so watch out)
-
- # Defaults in case the user types 'make All' directly
- ! # Should match X11R4_FLAGS's CFLAGS definition
- CFLAGS = $(COPTS) $(OPTIONS)
-
- ############################################################
- --- 126,132 ----
- # (but -fswitch is buggy on some systems, so watch out)
-
- # Defaults in case the user types 'make All' directly
- ! # Should match X11_FLAGS's CFLAGS definition
- CFLAGS = $(COPTS) $(OPTIONS)
-
- ############################################################
- ***************
- *** 150,156 ****
- # -DUNIXPC unixpc (ATT 3b1 or ATT 7300)
- # -DUNIXPLOT unixplot
- # -DX11 X11 Window System (This is $(PLOTXFLAG))
- ! TERMFLAGS = -Iterm -DUNIXPLOT $(PLOTXFLAG)
-
- ############################################################
- # Library explanations.
- --- 146,152 ----
- # -DUNIXPC unixpc (ATT 3b1 or ATT 7300)
- # -DUNIXPLOT unixplot
- # -DX11 X11 Window System (This is $(PLOTXFLAG))
- ! TERMFLAGS = -Iterm -DUNIXPLOT $(PLOTXFLAG)
-
- ############################################################
- # Library explanations.
- ***************
- *** 163,172 ****
- # -lccgi if -DCGI in TERMFLAGS
- LIBS = -lm -lplot
-
- ############################################################
- # Machine-dependent settings.
- #
- ! X11R4_FLAGS = \
- CFLAGS="$(COPTS) $(OPTIONS)" \
- LIBS="$(LIBS)" X11FLAGS="$(X11FLAGS)" X11INCLUDES="$(X11INCLUDES)" \
- X11LIBS="$(X11LIBS)" \
- --- 159,175 ----
- # -lccgi if -DCGI in TERMFLAGS
- LIBS = -lm -lplot
-
- + ####################################################################
- + # List of object files except version.o
- + OBJS = bitmap.o command.o contour.o eval.o graphics.o graph3d.o help.o \
- + internal.o misc.o parse.o plot.o readline.o scanner.o \
- + setshow.o standard.o term.o util.o
- +
- + NEXTOBJS = EPSView.o EpsViewer.o
- ############################################################
- # Machine-dependent settings.
- #
- ! X11_FLAGS = \
- CFLAGS="$(COPTS) $(OPTIONS)" \
- LIBS="$(LIBS)" X11FLAGS="$(X11FLAGS)" X11INCLUDES="$(X11INCLUDES)" \
- X11LIBS="$(X11LIBS)" \
- ***************
- *** 174,188 ****
- X11INSTALL="$(X11INSTALL)" \
- TERMFLAGS="$(TERMFLAGS)"
-
- - X11R4_M_FLAGS = \
- - CFLAGS="$(COPTS) $(OPTIONS)" \
- - LIBS="$(LIBS)" X11FLAGS="-DMOTIF -D_NO_PROTO" \
- - X11INCLUDES="-I/usr/include/Xm" \
- - X11LIBS="-lXm -lXt -lX11" \
- - PLOTXFLAG="$(PLOTXFLAG)" GNUPLOT_X11=$(GNUPLOT_X11) \
- - X11INSTALL="$(X11INSTALL)" \
- - TERMFLAGS="$(TERMFLAGS)"
- -
- DEC_FLAGS = \
- CFLAGS="$(COPTS) $(OPTIONS) " \
- LIBS="$(LIBS)" X11FLAGS="$(X11FLAGS)" X11INCLUDES="$(X11INCLUDES)" \
- --- 177,182 ----
- ***************
- *** 191,239 ****
- X11INSTALL="$(X11INSTALL)" \
- TERMFLAGS="$(TERMFLAGS) -DULTRIX_KLUDGE"
-
- - DEC_M_FLAGS = \
- - CFLAGS="$(COPTS) $(OPTIONS)" \
- - LIBS="$(LIBS)" X11FLAGS="-DMOTIF -D_NO_PROTO" \
- - X11INCLUDES="-I/usr/include/Xm" \
- - X11LIBS="-lXm -lXt -lX11" \
- - PLOTXFLAG="$(PLOTXFLAG)" GNUPLOT_X11=$(GNUPLOT_X11) \
- - X11INSTALL="$(X11INSTALL)" \
- - TERMFLAGS="$(TERMFLAGS) -DULTRIX_KLUDGE"
- -
- APOLLO_FLAGS = \
- CFLAGS="$(COPTS) $(OPTIONS) -DGAMMA=lgamma" \
- LIBS="$(LIBS)" X11FLAGS="$(X11FLAGS)" \
- X11INCLUDES="$(X11INCLUDES)" \
- ! X11LIBS="-L/usr/lib/X11 -lXaw -lXmu -lXt -lX11" \
- PLOTXFLAG="$(PLOTXFLAG)" GNUPLOT_X11=$(GNUPLOT_X11) \
- X11INSTALL="$(X11INSTALL)" \
- TERMFLAGS="$(TERMFLAGS) -DAPOLLO -DGPR"
-
- - APOLLO_M_FLAGS = \
- - CFLAGS="$(COPTS) $(OPTIONS) -DGAMMA=lgamma" \
- - LIBS="$(LIBS)" X11FLAGS="-DMOTIF" X11INCLUDES="-I/usr/include/Xm" \
- - X11LIBS="-L/usr/lib/X11 -lXm -lXt -lX11" \
- - PLOTXFLAG="$(PLOTXFLAG)" GNUPLOT_X11=$(GNUPLOT_X11) \
- - TERMFLAGS="$(TERMFLAGS) -DAPOLLO -DGPR"
- -
- HP_FLAGS = \
- ! CFLAGS="$(COPTS) $(OPTIONS) -DMEMSET -DMEMCPY -DGETCWD" \
- LIBS="-lm" X11FLAGS="$(X11FLAGS)" \
- ! X11INCLUDES="-I/usr/include/X11R4 -I/usr/include/X11R4/X11/Xaw" \
- ! X11LIBS="-L/usr/lib/X11R4 -lXaw -lXmu -lXt -lXext -lX11" \
- PLOTXFLAG="$(PLOTXFLAG)" GNUPLOT_X11=$(GNUPLOT_X11) \
- X11INSTALL="$(X11INSTALL)" \
- TERMFLAGS="-Iterm -DX11"
-
- - HP_M_FLAGS = \
- - CFLAGS="$(COPTS) $(OPTIONS) -DMEMSET -DMEMCPY -DGETCWD" \
- - LIBS="-lm" X11FLAGS="-DMOTIF -D_NO_PROTO" \
- - X11INCLUDES="-I/usr/include/Motif1.1 -I/usr/include/Motif1.1/Xm -I/usr/include/X11R4" \
- - X11LIBS="-L/usr/lib/Motif1.1 -L/usr/lib/X11R4 -lXm -lXt -lX11" \
- - PLOTXFLAG="$(PLOTXFLAG)" GNUPLOT_X11=$(GNUPLOT_X11) \
- - X11INSTALL="$(X11INSTALL)" \
- - TERMFLAGS=" -Iterm -DX11"
- -
- SUN_FLAGS = \
- CFLAGS="$(COPTS) $(OPTIONS)" \
- LIBS="-lsuntool -lsunwindow -lpixrect $(LIBS)" \
- --- 185,208 ----
- X11INSTALL="$(X11INSTALL)" \
- TERMFLAGS="$(TERMFLAGS) -DULTRIX_KLUDGE"
-
- APOLLO_FLAGS = \
- CFLAGS="$(COPTS) $(OPTIONS) -DGAMMA=lgamma" \
- LIBS="$(LIBS)" X11FLAGS="$(X11FLAGS)" \
- X11INCLUDES="$(X11INCLUDES)" \
- ! X11LIBS="-L/usr/lib/X11 -lX11" \
- PLOTXFLAG="$(PLOTXFLAG)" GNUPLOT_X11=$(GNUPLOT_X11) \
- X11INSTALL="$(X11INSTALL)" \
- TERMFLAGS="$(TERMFLAGS) -DAPOLLO -DGPR"
-
- HP_FLAGS = \
- ! CFLAGS="+O1 $(OPTIONS) -DMEMSET -DMEMCPY -DGETCWD" \
- LIBS="-lm" X11FLAGS="$(X11FLAGS)" \
- ! X11INCLUDES="-I/usr/include/X11R4" \
- ! X11LIBS="-L/usr/lib/X11R4 -lX11" \
- PLOTXFLAG="$(PLOTXFLAG)" GNUPLOT_X11=$(GNUPLOT_X11) \
- X11INSTALL="$(X11INSTALL)" \
- TERMFLAGS="-Iterm -DX11"
-
- SUN_FLAGS = \
- CFLAGS="$(COPTS) $(OPTIONS)" \
- LIBS="-lsuntool -lsunwindow -lpixrect $(LIBS)" \
- ***************
- *** 252,258 ****
- TERMFLAGS="$(TERMFLAGS) -DSUN"
-
- SGI_FLAGS = \
- ! CFLAGS="$(COPTS) $(OPTIONS)" \
- LIBS="-lgl_s -lm" X11FLAGS=" " X11INCLUDES=" " \
- X11LIBS=" " \
- PLOTXFLAG=" " GNUPLOT_X11=" " X11INSTALL=x11_noinstall \
- --- 221,227 ----
- TERMFLAGS="$(TERMFLAGS) -DSUN"
-
- SGI_FLAGS = \
- ! CFLAGS="$(COPTS) $(OPTIONS) -DGETCWD -DNOVFORK" \
- LIBS="-lgl_s -lm" X11FLAGS=" " X11INCLUDES=" " \
- X11LIBS=" " \
- PLOTXFLAG=" " GNUPLOT_X11=" " X11INSTALL=x11_noinstall \
- ***************
- *** 259,268 ****
- TERMFLAGS="-Iterm -DIRIS4D"
-
- SGIX11_FLAGS = \
- ! CFLAGS="$(COPTS) $(OPTIONS)" \
- LIBS="-lgl_s -lm -lc_s" X11FLAGS="$(X11FLAGS)" \
- ! X11INCLUDES="-I/usr/include/X11 -I/usr/include/X11/Xaw" \
- ! X11LIBS="-L/usr/lib/X11 -lXaw -lXmu -lXt -lXext -lX11" \
- PLOTXFLAG="$(PLOTXFLAG)" GNUPLOT_X11=$(GNUPLOT_X11) \
- X11INSTALL="$(X11INSTALL)" \
- TERMFLAGS="-Iterm -DX11 -DIRIS4D"
- --- 228,237 ----
- TERMFLAGS="-Iterm -DIRIS4D"
-
- SGIX11_FLAGS = \
- ! CFLAGS="$(COPTS) $(OPTIONS) -DGETCWD -DNOVFORK" \
- LIBS="-lgl_s -lm -lc_s" X11FLAGS="$(X11FLAGS)" \
- ! X11INCLUDES="$(X11INCLUDES)" \
- ! X11LIBS="-L/usr/lib/X11 -lX11" \
- PLOTXFLAG="$(PLOTXFLAG)" GNUPLOT_X11=$(GNUPLOT_X11) \
- X11INSTALL="$(X11INSTALL)" \
- TERMFLAGS="-Iterm -DX11 -DIRIS4D"
- ***************
- *** 297,331 ****
- AIX_FLAGS = \
- CFLAGS="$(COPTS) $(OPTIONS) -Dunix -DNOVFORK" \
- LIBS="$(LIBS)" X11FLAGS="$(X11FLAGS)" \
- ! X11INCLUDES="-I/usr/include/X11 -I/usr/lpp/X11/Xamples/lib/Xaw -I/usr/lpp/X11/Xamples/lib/Xaw/X11" \
- ! X11LIBS="-L/usr/lpp/X11/Xamples/lib/Xmu -L/usr/lpp/X11/Xamples/lib/Xaw -lXaw -lXmu -lXt -lXext -lX11" \
- PLOTXFLAG="$(PLOTXFLAG)" GNUPLOT_X11=$(GNUPLOT_X11) \
- X11INSTALL="$(X11INSTALL)" \
- TERMFLAGS="$(TERMFLAGS)"
-
- - AIX_M_FLAGS = \
- - CFLAGS="$(COPTS) $(OPTIONS) -Dunix -DNOVFORK" \
- - LIBS="$(LIBS)" X11FLAGS="-DMOTIF" X11INCLUDES="-I/usr/include/Xm" \
- - X11LIBS="-lXm -lXt -lX11" \
- - PLOTXFLAG="$(PLOTXFLAG)" GNUPLOT_X11=$(GNUPLOT_X11) \
- - X11INSTALL="$(X11INSTALL)" \
- - TERMFLAGS="$(TERMFLAGS)"
- -
- NEXT_FLAGS = \
- CFLAGS="$(COPTS) -DGAMMA=lgamma -DNEXT" \
- ! LIBS="-lm" X11FLAGS="$(X11FLAGS)" \
- X11INCLUDES=" " X11LIBS=" " PLOTXFLAG=" " \
- GNUPLOT_X11=" " X11INSTALL=x11_noinstall \
- ! TERMFLAGS="-Iterm"
-
- NEXT_X11_FLAGS = \
- CFLAGS="$(COPTS) -DGAMMA=lgamma -DNEXT" \
- ! LIBS="-lm" \
- ! X11LIBS="-L/usr/lib/X11 -lXaw -lXmu -lXt -lX11" \
- X11INCLUDES="$(X11INCLUDES)" X11FLAGS="$(X11FLAGS)" \
- PLOTXFLAG="$(PLOTXFLAG)" GNUPLOT_X11=$(GNUPLOT_X11) \
- X11INSTALL="$(X11INSTALL)" \
- ! TERMFLAGS="-Iterm -DX11"
-
- CRAY_FLAGS = \
- CFLAGS="$(COPTS) $(OPTIONS) -DGETCWD -DNOVFORK" \
- --- 266,293 ----
- AIX_FLAGS = \
- CFLAGS="$(COPTS) $(OPTIONS) -Dunix -DNOVFORK" \
- LIBS="$(LIBS)" X11FLAGS="$(X11FLAGS)" \
- ! X11INCLUDES="$(X11INCLUDES)" \
- ! X11LIBS="$(X11LIBS)" \
- PLOTXFLAG="$(PLOTXFLAG)" GNUPLOT_X11=$(GNUPLOT_X11) \
- X11INSTALL="$(X11INSTALL)" \
- TERMFLAGS="$(TERMFLAGS)"
-
- NEXT_FLAGS = \
- CFLAGS="$(COPTS) -DGAMMA=lgamma -DNEXT" \
- ! LIBS="-lNeXT_s -lsys_s -lm" \
- ! X11FLAGS="$(X11FLAGS)" \
- X11INCLUDES=" " X11LIBS=" " PLOTXFLAG=" " \
- GNUPLOT_X11=" " X11INSTALL=x11_noinstall \
- ! TERMFLAGS="-Iterm" OBJS=" $(OBJS) $(NEXTOBJS)"
-
- NEXT_X11_FLAGS = \
- CFLAGS="$(COPTS) -DGAMMA=lgamma -DNEXT" \
- ! LIBS="-lNeXT_s -lsys_s -lm" \
- ! X11LIBS="-L/usr/lib/X11 -lX11" \
- X11INCLUDES="$(X11INCLUDES)" X11FLAGS="$(X11FLAGS)" \
- PLOTXFLAG="$(PLOTXFLAG)" GNUPLOT_X11=$(GNUPLOT_X11) \
- X11INSTALL="$(X11INSTALL)" \
- ! TERMFLAGS="-Iterm -DX11" OBJS=" $(OBJS) $(NEXTOBJS)"
-
- CRAY_FLAGS = \
- CFLAGS="$(COPTS) $(OPTIONS) -DGETCWD -DNOVFORK" \
- ***************
- *** 335,340 ****
- --- 297,303 ----
- PLOTXFLAG=" " GNUPLOT_X11=" " \
- X11INSTALL=x11_noinstall \
- TERMFLAGS="-Iterm"
- +
- CRAY_X11_FLAGS = \
- CFLAGS="$(COPTS) $(OPTIONS) -DGETCWD -DNOVFORK" \
- LIBS="-lm" X11FLAGS="$(X11FLAGS)" \
- ***************
- *** 343,354 ****
- PLOTXFLAG="$(PLOTXFLAG)" GNUPLOT_X11="$(GNUPLOT_X11)" \
- X11INSTALL=$(X11INSTALL) \
- TERMFLAGS="-Iterm -DX11"
- ####################################################################
- - # List of object files except version.o
- - OBJS = bitmap.o command.o contour.o eval.o graphics.o graph3d.o help.o \
- - internal.o misc.o parse.o plot.o readline.o scanner.o \
- - setshow.o standard.o term.o util.o
- - ####################################################################
- # List of source files
- # Used for makeing shar files, lint, and some dependencies.
- DIRS = term demo docs docs/latextut
- --- 306,330 ----
- PLOTXFLAG="$(PLOTXFLAG)" GNUPLOT_X11="$(GNUPLOT_X11)" \
- X11INSTALL=$(X11INSTALL) \
- TERMFLAGS="-Iterm -DX11"
- +
- + PTX_X11_FLAGS = \
- + CFLAGS="$(COPTS) $(OPTIONS) -DGETCWD -DMEMSET -DMEMCPY -DCRIPPLED_SELECT" \
- + LIBS="-lm -lplot" X11FLAGS="$(X11FLAGS)" \
- + X11INCLUDES="$(X11INCLUDES)" \
- + X11LIBS="-lX11 -lseq -lsocket -linet -lnsl" \
- + PLOTXFLAG="$(PLOTXFLAG)" GNUPLOT_X11="$(GNUPLOT_X11)" \
- + X11INSTALL=$(X11INSTALL) \
- + TERMFLAGS="$(TERMFLAGS)"
- +
- + CONVEX_X11_FLAGS = \
- + CFLAGS="$(COPTS) $(OPTIONS) -DHUGE=8.9e307" \
- + LIBS="$(LIBS)" X11FLAGS="$(X11FLAGS)" X11INCLUDES="$(X11INCLUDES)" \
- + X11LIBS="$(X11LIBS)" \
- + PLOTXFLAG="$(PLOTXFLAG)" GNUPLOT_X11=$(GNUPLOT_X11) \
- + X11INSTALL="$(X11INSTALL)" \
- + TERMFLAGS="$(TERMFLAGS)"
- +
- ####################################################################
- # List of source files
- # Used for makeing shar files, lint, and some dependencies.
- DIRS = term demo docs docs/latextut
- ***************
- *** 360,372 ****
- CSOURCE5 = term/amiga.trm term/aed.trm term/cgi.trm term/dumb.trm term/dxf.trm \
- term/dxy.trm term/eepic.trm term/epson.trm term/fig.trm \
- term/hp26.trm term/hp2648.trm term/hpgl.trm term/hpljii.trm \
- ! term/apollo.trm term/gpr.trm
- CSOURCE6 = term/impcodes.h term/imagen.trm term/object.h \
- ! term/iris4d.trm term/kyo.trm term/latex.trm term/pc.trm
- CSOURCE7 = term/post.trm term/qms.trm term/regis.trm term/sun.trm \
- term/t410x.trm term/tek.trm term/unixpc.trm term/unixplot.trm \
- term/v384.trm term/x11.trm term/bigfig.trm term/vws.trm gnuplot_x11.c
- CSOURCE8 = contour.c
- # not C code, but still needed
-
- DEMOS = demo/1.dat demo/2.dat demo/3.dat demo/contours.demo demo/controls.demo \
- --- 336,349 ----
- CSOURCE5 = term/amiga.trm term/aed.trm term/cgi.trm term/dumb.trm term/dxf.trm \
- term/dxy.trm term/eepic.trm term/epson.trm term/fig.trm \
- term/hp26.trm term/hp2648.trm term/hpgl.trm term/hpljii.trm \
- ! term/apollo.trm term/gpr.trm term/ai.trm term/next.trm
- CSOURCE6 = term/impcodes.h term/imagen.trm term/object.h \
- ! term/iris4d.trm term/kyo.trm term/latex.trm term/pbm.trm term/pc.trm
- CSOURCE7 = term/post.trm term/qms.trm term/regis.trm term/sun.trm \
- term/t410x.trm term/tek.trm term/unixpc.trm term/unixplot.trm \
- term/v384.trm term/x11.trm term/bigfig.trm term/vws.trm gnuplot_x11.c
- CSOURCE8 = contour.c
- + NEXTSRC = EPSView.m EPSView.h EpsViewer.m EpsViewer.h
- # not C code, but still needed
-
- DEMOS = demo/1.dat demo/2.dat demo/3.dat demo/contours.demo demo/controls.demo \
- ***************
- *** 374,388 ****
- demo/simple.demo demo/surface1.demo demo/surface2.demo demo/using.dat \
- demo/using.demo demo/world.cor demo/world.dat demo/world.demo \
- demo/err.dat demo/poldat.demo demo/polar.dat demo/errorbar.demo \
- ! demo/antenna.dat demo/all.demo demo/bivariat.demo
-
- ETC = Copyright README README.gnutex README.amiga makefile.unx makefile.vms \
- linkopt.amg makefile.amg makefile.ami linkopt.vms buildvms.com \
- ! plot.h help.h setshow.h bitmap.h term.h lasergnu \
- term/README History gnuplot.el Intergraph.x11 README.Install
-
- #BETA files (not standard distribution files)
- ! BETA = BETA10
- # PC-specific files
- PC = corgraph.asm corplot.c header.mac hrcgraph.asm lineproc.mac \
- linkopt.msc linkopt.tc linkopt.tco makefile.msc makefile.tc \
- --- 351,365 ----
- demo/simple.demo demo/surface1.demo demo/surface2.demo demo/using.dat \
- demo/using.demo demo/world.cor demo/world.dat demo/world.demo \
- demo/err.dat demo/poldat.demo demo/polar.dat demo/errorbar.demo \
- ! demo/antenna.dat demo/all.demo demo/bivariat.demo demo/hidden.demo
-
- ETC = Copyright README README.gnutex README.amiga makefile.unx makefile.vms \
- linkopt.amg makefile.amg makefile.ami linkopt.vms buildvms.com \
- ! lasergnu README.3d README.x11 README.NeXT \
- term/README History gnuplot.el Intergraph.x11 README.Install
-
- #BETA files (not standard distribution files)
- ! BETA = BETA6
- # PC-specific files
- PC = corgraph.asm corplot.c header.mac hrcgraph.asm lineproc.mac \
- linkopt.msc linkopt.tc linkopt.tco makefile.msc makefile.tc \
- ***************
- *** 405,438 ****
- info:
- @echo "Please do a 'make <MACHINE>' where <MACHINE> is one of the following:"
- @echo
- ! @echo "apollo, apollo_motif for Apollo running SR10.3 with Apollo's X11R3"
- ! @echo "dec, dec_motif for Dec3100/5000 running Ultrix 3.1d with MIT's X11R4"
- ! @echo "hp, hp_motif for HP/9000 700 series running HP/UX 8.0 with MIT's X11R4"
- ! @echo "sun for Sun sparcstation running SunOS 4.1 with suntools (no X11R4) "
- ! @echo "sun_x11 for Sun sparcstation running SunOS 4.1 with suntools and X11R4 "
- ! @echo "sgi for Silicon Graphics IRIS4D machines (no X11R4) "
- ! @echo "sgix11 for Silicon Graphics IRIS4D machines (X11R4) "
- ! @echo "next for NeXT Cube and Slab running NeXTOS 2.0+ (no X11R4) "
- ! @echo "3b1 for ATT 3b1 machines (no X11R4) "
- ! @echo "386ix for 386 machines running 386/ix (no X11)"
- ! @echo "386ix_x11 for 386 machines running 386/ix with T.Roell X386"
- ! @echo "ibmrs6000, ibmrs6000_motif for IBM RS/6000 running Aix 3.1 with IBM's X11R3"
- ! @echo "x11r4, x11r4_motif for a generic machine (like a sun or dec) with MIT's X11R4"
- ! @echo "cray for Cray Y-MP or Cray-2 running Unicos 6.0 or 6.1 (no X11R4)"
- ! @echo "cray_x11 for Cray Y-MP or Cray-2 running Unicos 6.0 or 6.1 with X11R4"
- @echo
- @echo "Examples:"
- @echo
- ! @echo " make x11r4"
- ! @echo " make x11r4_motif"
- @echo " make apollo"
- @echo " make apollo OPTIONS='-DNOCWDRC' "
- ! @echo " make apollo_motif DEST='/usr/um/misc/bin' "
- @echo " make dec"
- @echo " make hp"
- @echo " make next"
- @echo " make sun HELPDEST='/usr/um/misc/lib/gnuplot.gih' "
- ! @echo " make sun X11INCLUDES='-I/usr/local/include -I/usr/local/include/X11 -I/usr/local/include/X11/Xaw' "
- @echo " make sun_x11"
- @echo " make sgi"
- @echo " make 3b1"
- --- 382,417 ----
- info:
- @echo "Please do a 'make <MACHINE>' where <MACHINE> is one of the following:"
- @echo
- ! @echo "apollo for Apollo running SR10.3 with Apollo's X11"
- ! @echo "dec for Dec3100/5000 running Ultrix 3.1d with MIT's X11"
- ! @echo "hp for HP/9000 700 series running HP/UX 8.0 with MIT's X11R4"
- ! @echo "sun for Sun sparcstation running SunOS 4.1 with suntools (no X11) "
- ! @echo "sun_x11 for Sun sparcstation running SunOS 4.1 with suntools and X11 "
- ! @echo "sgi for Silicon Graphics IRIS4D machines (no X11) "
- ! @echo "sgix11 for Silicon Graphics IRIS4D machines (X11) "
- ! @echo "next for NeXT Cube and Slab running NeXTOS 2.0+ (no X11)"
- ! @echo "next_11 for NeXT Cube and Slab running NeXTOS 2.0+ with X11"
- ! @echo "3b1 for ATT 3b1 machines (no X11) "
- ! @echo "386ix for 386 machines running 386/ix (no X11)"
- ! @echo "386ix_x11 for 386 machines running 386/ix with T.Roell X386"
- ! @echo "ibmrs6000 for IBM RS/6000 running Aix 3.1 with IBM's X11"
- ! @echo "x11 for a generic machine (like a sun or dec) with MIT's X11"
- ! @echo "cray for Cray Y-MP or Cray-2 running Unicos 6.0 or 6.1 (no X11)"
- ! @echo "cray_x11 for Cray Y-MP or Cray-2 running Unicos 6.0 or 6.1 with X11"
- ! @echo "ptx_x11 for Sequent Dynix/PTX with MIT X11"
- ! @echo "convex_x11 for Convex 9.0 with MIT X11"
- @echo
- @echo "Examples:"
- @echo
- ! @echo " make x11"
- @echo " make apollo"
- @echo " make apollo OPTIONS='-DNOCWDRC' "
- ! @echo " make apollo DEST='/usr/um/misc/bin' "
- @echo " make dec"
- @echo " make hp"
- @echo " make next"
- @echo " make sun HELPDEST='/usr/um/misc/lib/gnuplot.gih' "
- ! @echo " make sun X11INCLUDES='-I/usr/local/include' "
- @echo " make sun_x11"
- @echo " make sgi"
- @echo " make 3b1"
- ***************
- *** 441,447 ****
- @echo " make cray"
- @echo " make cray_x11"
- @echo
- ! @echo "If you just type 'make All' , it will build gnuplot for Unix X11R4/Athena"
- @echo "and the following variables will be used as default:"
- @echo
- @echo " DEST " $(DEST)
- --- 420,426 ----
- @echo " make cray"
- @echo " make cray_x11"
- @echo
- ! @echo "If you just type 'make All' , it will build gnuplot for Unix X11"
- @echo "and the following variables will be used as default:"
- @echo
- @echo " DEST " $(DEST)
- ***************
- *** 467,496 ****
- ###############################################################
- # Targets for each machine
-
- ! x11r4:
- ! $(MAKE) $(MFLAGS) $(MY_FLAGS) $(X11R4_FLAGS) $(TARGET)
-
- - x11r4_motif:
- - $(MAKE) $(MFLAGS) $(MY_FLAGS) $(X11R4_M_FLAGS) $(TARGET)
- -
- dec:
- $(MAKE) $(MFLAGS) $(MY_FLAGS) $(DEC_FLAGS) $(TARGET)
-
- - dec_motif:
- - $(MAKE) $(MFLAGS) $(MY_FLAGS) $(DEC_M_FLAGS) $(TARGET)
- -
- apollo:
- $(MAKE) $(MFLAGS) $(MY_FLAGS) $(APOLLO_FLAGS) $(TARGET)
-
- - apollo_motif:
- - $(MAKE) $(MFLAGS) $(MY_FLAGS) $(APOLLO_M_FLAGS) $(TARGET)
- -
- hp:
- $(MAKE) $(MFLAGS) $(MY_FLAGS) $(HP_FLAGS) $(TARGET)
-
- - hp_motif:
- - $(MAKE) $(MFLAGS) $(MY_FLAGS) $(HP_M_FLAGS) $(TARGET)
- -
- next:
- $(MAKE) $(MFLAGS) $(MY_FLAGS) $(NEXT_FLAGS) $(TARGET)
-
- --- 446,463 ----
- ###############################################################
- # Targets for each machine
-
- ! x11:
- ! $(MAKE) $(MFLAGS) $(MY_FLAGS) $(X11_FLAGS) $(TARGET)
-
- dec:
- $(MAKE) $(MFLAGS) $(MY_FLAGS) $(DEC_FLAGS) $(TARGET)
-
- apollo:
- $(MAKE) $(MFLAGS) $(MY_FLAGS) $(APOLLO_FLAGS) $(TARGET)
-
- hp:
- $(MAKE) $(MFLAGS) $(MY_FLAGS) $(HP_FLAGS) $(TARGET)
-
- next:
- $(MAKE) $(MFLAGS) $(MY_FLAGS) $(NEXT_FLAGS) $(TARGET)
-
- ***************
- *** 524,535 ****
- ibmrs6000:
- $(MAKE) $(MFLAGS) $(MY_FLAGS) $(AIX_FLAGS) $(TARGET)
-
- - ibmrs6000_motif:
- - $(MAKE) $(MFLAGS) $(MY_FLAGS) $(AIX_M_FLAGS) $(TARGET)
- cray:
- $(MAKE) $(MFLAGS) $(MY_FLAGS) $(CRAY_FLAGS) $(TARGET)
- cray_x11:
- $(MAKE) $(MFLAGS) $(MY_FLAGS) $(CRAY_X11_FLAGS) $(TARGET)
-
- #############################################################
- # Targets that really do something
- --- 491,504 ----
- ibmrs6000:
- $(MAKE) $(MFLAGS) $(MY_FLAGS) $(AIX_FLAGS) $(TARGET)
-
- cray:
- $(MAKE) $(MFLAGS) $(MY_FLAGS) $(CRAY_FLAGS) $(TARGET)
- cray_x11:
- $(MAKE) $(MFLAGS) $(MY_FLAGS) $(CRAY_X11_FLAGS) $(TARGET)
- + ptx_x11:
- + $(MAKE) $(MFLAGS) $(MY_FLAGS) $(PTX_X11_FLAGS) $(TARGET)
- + convex_x11:
- + $(MAKE) $(MFLAGS) $(MY_FLAGS) $(CONVEX_X11_FLAGS) $(TARGET)
-
- #############################################################
- # Targets that really do something
- ***************
- *** 556,569 ****
- @echo
- @echo "Please do a 'make <MACHINE> TARGET=Install' where <MACHINE> is one of the following:"
- @echo
- ! @echo "apollo, apollo_motif, dec, dec_motif, hp, sun, sun_x11, sgi, sgix11"
- ! @echo "next, 3b1, 386ix, ibmrs6000, ibmrs6000_motif, x11r4, x11r4_motif"
- @echo
- @echo "Examples:"
- @echo
- ! @echo " make x11r4 TARGET=Install "
- @echo " make apollo TARGET=Install "
- - @echo " make apollo_motif TARGET=Install DEST='/usr/um/misc/bin' "
- @echo " make dec TARGET=Install "
- @echo " make hp TARGET=Install "
- @echo " make sun TARGET=Install HELPDEST='/usr/um/misc/lib/gnuplot.gih' "
- --- 525,538 ----
- @echo
- @echo "Please do a 'make <MACHINE> TARGET=Install' where <MACHINE> is one of the following:"
- @echo
- ! @echo "apollo, dec, hp, sun, sun_x11, sgi, sgix11, cgi,"
- ! @echo "next, next_x11, 3b1, 386ix, 386ix_x11, ibmrs6000,"
- ! @echo "x11, cray, cray_x11, ptx_x11, convex_x11"
- @echo
- @echo "Examples:"
- @echo
- ! @echo " make x11 TARGET=Install "
- @echo " make apollo TARGET=Install "
- @echo " make dec TARGET=Install "
- @echo " make hp TARGET=Install "
- @echo " make sun TARGET=Install HELPDEST='/usr/um/misc/lib/gnuplot.gih' "
- ***************
- *** 617,625 ****
- version.o:
- $(CC) $(CFLAGS) -DCONTACT=\"$(EMAIL)\" -c version.c
-
- $(OBJS): plot.h
-
- ! command.o:
- $(CC) $(CFLAGS) -c command.c -DHELPFILE=\"$(HELPDEST)\"
-
- command.o help.o misc.o: help.h
- --- 586,600 ----
- version.o:
- $(CC) $(CFLAGS) -DCONTACT=\"$(EMAIL)\" -c version.c
-
- + EpsViewer.o : EpsViewer.h EpsViewer.m EPSView.h
- + $(CC) -c EpsViewer.m
- +
- + EPSView.o : EPSView.h EPSView.m
- + $(CC) -c EPSView.m
- +
- $(OBJS): plot.h
-
- ! command.o: command.c
- $(CC) $(CFLAGS) -c command.c -DHELPFILE=\"$(HELPDEST)\"
-
- command.o help.o misc.o: help.h
- ***************
- *** 632,639 ****
- # Miscellaneous targets
-
- SOURCES=plot.h help.h setshow.h bitmap.h term.h $(CSOURCE1) $(CSOURCE2) \
- ! $(CSOURCE3) $(CSOURCE4) $(CSOURCE5) $(CSOURCE6) $(CSOURCE7) $(CSOURCE8)
-
- lint:
- lint -hx $(SOURCES)
-
- --- 607,617 ----
- # Miscellaneous targets
-
- SOURCES=plot.h help.h setshow.h bitmap.h term.h $(CSOURCE1) $(CSOURCE2) \
- ! $(CSOURCE3) $(CSOURCE4) $(CSOURCE5) $(CSOURCE6) $(CSOURCE7)\
- ! $(CSOURCE8) $(NEXTSRC)
-
- + DOCS = $(DOCS1) $(DOCS2) $(DOCS3)
- +
- lint:
- lint -hx $(SOURCES)
-
- ***************
- *** 704,707 ****
- --- 682,712 ----
-
- gnuplot.sh15: $(BETA)
- shar $(BETA) > gnuplot.sh15
- +
- + tar: $(ETC) $(SOURCES) $(PC) $(DEMOS) $(BETA) $(DOCS)
- + $(TAR) cvf /tmp/gnuplot.tar $(ETC) $(SOURCES) $(PC)\
- + $(DEMOS) $(BETA) $(DOCS)
- + rcsdoc:
- + rcs -o-$(RCSOLD) -l$(RCSVER) $(DOCS)
- +
- + rcs:
- + rcs -l$(RCSVER) -c$(RCSCOM) $(ETC) $(SOURCES) $(PC)
- +
- + ci:
- + ci -l$(RCSVER) -m$(RCSCOM) $(SOURCES) $(PC) $(ETC)
- +
- + cidoc:
- + ci -l$(RCSVER) -m$(RCSCOM) $(DOCS)
- +
- + cidemo:
- + ci -l$(RCSVER) -m$(RCSCOM) $(DEMOS)
- +
- + co:
- + co -l -r$(RCSVER) $(ETC) $(SOURCES) $(PC)
- +
- + codoc:
- + co -l -r$(RCSVER) $(DOCS)
- +
- + codemo:
- + co -l -r$(RCSVER) $(DEMOS)
-
-