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
|
#=======================================#
# Makefile options for Xplot11 library #
# Set up or select a set of compile #
# options for your system #
#=======================================#
# Set library name
PLTLIB = libPlt_gSP.a
# Some fortrans need trailing underscores in C interface symbols (see Xwin.c)
# This should work for most of the "unix" fortran compilers
DEFINE = -DUNDERSCORE
FC = gfortran
CC = gcc
#DP = -fdefault-real-8
FFLAGS = -m64 -O2 $(DP)
CFLAGS = -m64 -O2 $(DEFINE) -I/usr/X11/include
AR = ar r
RANLIB = ranlib
LINKLIB = -L/usr/X11R6/lib -lX11
|