# Compile-time configuration for gtic FidoNet file forwarder VERSION = "1.3b" # Main configuration file. CONFIG = "${PREFIX}/etc/gtic/config" # Path to other configuration files (also see default config file). CONFIGDIR = "/etc/gtic" # Path to gtic related binaries. BINDIR = "/usr/local/gtic" # Security aspects. OWNER = fido GROUP = gtic # Name of C compiler. #CC = gcc # Compiler flags. #CFLAGS=-Wall -g # Defines for gtic's sources use. DEFINES += ${OPTS} -DCONFIG=\"${CONFIG}\" -DVERSION=\"${VERSION}\" # Compile-time options. # NO_LOCK Do not include lock pipe routines. Useful for debugging. # Also useful with systems which not support named pipes. # NO_LOCK removes exit on uid/gid==0 check, useful for strace # from root. # # SECURE_CONFIG Don't accept any configs instead of ${CONFIG}. OPTS = -DSECURE_CONFIG #OPTS = -DNO_LOCK -DSECURE_CONFIG