# This defines the type of OS to compile under. (BSD43 or SYSV) UNIXTYPE = -DBSD43 # Defines a special type of UNIX. -Dinter386 for Interactive 386/ix, # -Dhpux for HP-UX, or leave blank. UNIXVER = # These are for other compilation parameters. # Libraries for Berkeley compatibility, such as -lbsdipc -lBSD for hpux, # or -linet for Interactive 386/ix. BSDCOMPAT = # Options for the server. -DUNIXCONN for UNIX domain socket support and # -DSYSLOG for use of the system logging daemon. SERVOPTS = # Enable various extension in the server/ext directory and GlibExt EXTENS = -DSAMPLE # Options for the client library. -DUNIXCONN for UNIX domain socket support. GLIBOPTS = # Options for use when building the clients. -DPLX for using the # Parallax video support CLIOPTS = # Extra options during the object loading. Perhaps for specifying # alternate library paths. LDFLAGS = # Extra compile options, such as -g to add symbolic information. CFLAGS = # The X11 library. XLIB = -lX11 # Library containing the Parallax video extension code. XEXTLIB = # These next are for the destinations when doing an install. # SERVDIR determines where to put the server executable. SERVDIR = /etc # SERVFILEDIR determines where the server should look for and place its # support files, such as the configuration file. SERVFILEDIR = /etc # BINDIR determines where the client executables go. BINDIR = /usr/local/bin # INCDIR determines where the include files go. INCDIR = /usr/local/include # LIBDIR determines where the Galatea client library goes. LIBDIR = /usr/local/lib # Specifies the subshell for use during makes SHELL = /bin/sh # Specifies the command to install progs, libs, files, etc; # if UNIXTYPE is BSD, this should be 'install'; if SYSV, it # should be '${TOP}/etc/bsdinst.sh' INSTALL = install # give the location of the 'makedepend' utility if it exists MAKEDEP = makedepend # specify which C compiler to use (cc, gcc, etc.); if you use # gcc, you may need to pay attention to CFLAGS or LDFLAGS CC = cc