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
|
# -----------------------------------------------------------------------
# $Id: init.in,v 1.1 1994/09/16 03:54:53 mjl Exp $
#
# Maurice LeBrun
# IFS, University of Texas at Austin
# 14-Jul-1994
#
# Basic make assignments for PLplot under Unix (driven by "configure").
# These are used in both the library and demo Makefiles.
# -----------------------------------------------------------------------
# Utilities
CC = gcc
LDC = gcc
OCC = gcc -traditional
F77 =
LDF = gcc
M4 = @M4@
LN =
BIND = emxbind -aq
BIND_OPTS = -acim
STRIP = emxbind -sq
# Flags and other miscellanea
F77_FLAGS =
LDC_FLAGS =
LDF_FLAGS =
LDC_LIBS = -ljmgraph -lvesa
LDF_LIBS =
LIB_TAG =
TO = -o
O = .o
A = .a
E = .exe
# Library names
# (PLLIB_NAME) is for ld/linking
# (PLLIB_BASE) is the base library name for installation
#
# good for filesystems that truncate names (eg, DOS)
PLLIB_NAME = plplot
PLLIB_BASE = plplot
# Install directories (use forward-slashes with `F')
LIB_DIR = c:\usr\local\plplot\lib
LIB_DIRF = c:/usr/local/plplot/lib
DOC_DIR = c:\usr\local\plplot\doc
BIN_DIR = c:\usr\local\plplot\bin
INFO_DIR = c:\usr\local\plplot\info
INCLUDE_DIR = c:\usr\local\plplot\include
INCLUDE_DIRF = c:/usr/local/plplot/include
TCL_DIR = c:\usr\local\plplot\tcl
DEMOS_DIR = c:\usr\local\plplot\demos
|