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
|
# SunOS opensolaris 5.11
# With GNU C compiler use next SLIB definition:
#SLIB=-lsocket -lnsl -lgcc -R$(MIDASHOME)/$(MIDVERS)/lib
#
# With SCO 2.0.1 C compiler use next SLIB definition:
SLIB=-lsocket -lnsl -R$(MIDASHOME)/$(MIDVERS)/lib
LD77_CMD = f77
#
# -fast option does not work with g77. If you use g77 just remove next two
# entries.
#
#F_OPT=-fast # Fast performance
#LD77_OPT=-fast # has to be the same as above
F_OPT=
LD77_OPT=
#
C_OPT=-O
SH_CMD=ld -G # Shared library linker command.
SH_EXT=so # Shared extension for Solaris.
EDITLIBS=-lreadline -ltermcap
#EDITFLAGS=-DVOID_SIGHANDLER -DHAVE_ALLOCA -DHAVE_ALLOCA_H -DUSG -DSolaris -DHAVE_DIRENT_H -DHAVE_STRING_H -DHAVE_VARARGS_H -DHAVE_SYS_PTEM_H -DHAVE_SYS_STREAM_H -DHAVE_UNISTD_H -DHAVE_STDLIB_H
EDITFLAGS=-DVOID_SIGHANDLER -DHAVE_ALLOCA -DHAVE_ALLOCA_H -DUSG -DSolaris -DHAVE_DIRENT_H -DHAVE_STRING_H -DHAVE_SYS_PTEM_H -DHAVE_SYS_STREAM_H -DHAVE_UNISTD_H -DHAVE_STDLIB_H
GUI_OPT=-DBSD_COMP -Dmagnum -DSYSV -DSOLARIS
X_LIBS=-lXm -lXt -lX11 -lform
#
# To create statically linked GUIs set the following:
#X11_LIBPATH=-Bstatic
#XOPEN_LIBS=-Bdynamic
|