44 lines
999 B
Plaintext
44 lines
999 B
Plaintext
#---------------------------------------------------------------------------
|
|
# Makefile options for the TECS Client library and TecsServer
|
|
# machine-dependent part for Redhat Linux with AFS at PSI
|
|
#
|
|
# Markus Zolliker, March 2003
|
|
#--------------------------------------------------------------------------
|
|
|
|
include $(SICSROOT)/sics/linux_def
|
|
|
|
SICS=..
|
|
|
|
CC = gcc
|
|
FC = g77
|
|
CFLAGS = -DLINUX -g $(DFORTIFY) -I$(SICSROOT)/sics -I. -Wall -Wno-missing-braces -MMD
|
|
FFLAGS = -Wimplicit -g
|
|
ARFLAGS = cr
|
|
|
|
# -- system dependent routines
|
|
|
|
# -- PGPLOT library additions
|
|
PGLIB = -L/usr/X11R6/lib -lX11
|
|
|
|
# -- library for ASYNSRV
|
|
HARDSUPLIB=../hardsup/libhlib.a
|
|
|
|
# -- readline library
|
|
RDLIB =-lreadline -ltermcap
|
|
|
|
# -- the following macros are used as a replacement for some automatic variables
|
|
# due to different make versions.
|
|
# This is for GNU make.
|
|
#
|
|
# list of prerequisites including paths for VPATH
|
|
Q=$^
|
|
|
|
# Fortran/C source file name
|
|
F=$<
|
|
C=$<
|
|
|
|
include make_gen
|
|
|
|
-include $(OBJ:.o=.d)
|
|
|