# This is the template file for gup. Use this to create a new
# template file as needed and send it back to the author with a
# precise definition of your system so that others may benefit
# from your effort.

# The template file becomes part of the makefile so make sure that
# the syntax is consistant with what your make expects.

# CC		Nominate your C compiler if cc is inappropriate
#
# Example:	CC = gcc



# P_INCLUDE	Define #include search directories, typically with -I
#
# Example:	P_INCLUDE = -I/usr/5include

P_INCLUDE	=



# P_LIBS	Define libraries that need to be included to get
#		the relevant system libraries.

P_LIBS 		=


# P_CFLAGS	Flags to give to the C compiler.

P_CFLAGS 	= -O



# P_LDFLAGS	Flag to give to ld the linker.
#
# Example:	P_LDFLAGS = -g

P_LDFLAGS	=



# P_NO_FLAGS	Define the NO_ variables that identify which of the
#		following list of system calls, externals and #includes
#		which are missing from your particular system.
#
#
# Variable		Why
# --------		--------------------------------------------
#
# NO_DUP2		Your C library hasn't got dup2()
#
# NO_STRERROR		No strerror() routine.
#
# NO_FLOCK		Your system does not support flock() locking.
#
# NO_STRFTIME		strftime() is quite handy really...
#
# --------------------
#
# Define the include files that are missing from you system. Nothing
# much is done with this info yet apart from not pulling in the include
# (in config.h) let me know what needs to be done on your system.
#
# NO_MALLOC_H		No malloc.h for malloc() and realloc()
#
# NO_STDLIB_H
# NO_STRING_H		No string.h for strcpy() et al proto's
# NO_UNISTD_H
#
# --------------------
#
# Define the external variables that are missing from your systems
# libraries:
#
# NO_ERRNO		#include <errno.h> doesn't define errno.
#
#
# Example:	P_NO_FLAGS = -DNO_FLOCK -DNO_MALLOC_H -DNO_ERRNO
