1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
|
# Xymon compile-time settings for a GENERIC system
#
OSDEF = -Dgeneric
# NETLIBS: You may need to add -lresolv or similar to pick up network libraries
NETLIBS =
# Compile flags for normal build
CC = cc
CFLAGS = -g -O -D_REENTRANT $(OSDEF)
# Compile flags for debugging
# CFLAGS = -g -DDEBUG -D_REENTRANT $(OSDEF)
# Extra environment settings for runtime stuff.
# E.g. RUNTIMEDEFS="LD_LIBRARY_PATH=\"/opt/lib\"" to use
# runtime libraries located in /opt/lib
RUNTIMEDEFS =
# Mail program: This must support "CMD -s SUBJECT ADDRESS" to send out a mail with a subject
# Typically, this will be "mail" or "mailx"
MAILPROGRAM="mail"
|