## FILE: GNUmakefile.preamble
 #
 # Project              Tryst
 #
 # Creator              Chris B. Vetter
 # Maintainer           Chris B. Vetter
 # Creation Date        Mon Sep 11 14:38:29 CEST 2006
 #
 # Copyright (c) 2006
 #
 # Tryst is free software under the terms of a dual BSD/LGPL license.
 # For a full copyright description, see the COPYRIGHT file.
 #
 ############################################################################

#
# Version number of GNUstep
#

BASE_MAJOR_VERSION	= 1
BASE_MINOR_VERSION	= 12
BASE_SUBMINOR_VERSION	= 0

A_VERSION		= ${GNUSTEP_BASE_MAJOR_VERSION}${GNUSTEP_BASE_MINOR_VERSION}${GNUSTEP_BASE_SUBMINOR_VERSION}
R_VERSION		= ${BASE_MAJOR_VERSION}${BASE_MINOR_VERSION}${BASE_SUBMINOR_VERSION}

#
# Version number of this release
#

MAJOR_VERSION		= 1
MINOR_VERSION		= 0
SUBMINOR_VERSION	= 8

VERSION			= $(MAJOR_VERSION).$(MINOR_VERSION).$(SUBMINOR_VERSION)
TRYST_VERSION		= $(MAJOR_VERSION)$(MINOR_VERSION)$(SUBMINOR_VERSION)

#
# Additional flags to pass to the make utility
#

MAKEFLAGS		+= -s
MAKEFLAGS		+= warn=yes diagnose=yes debug=no messages=yes
MAKEFLAGS		+= shared=yes strip=yes

#
# Additional flags to pass to the preprocessor
#

ADDITIONAL_CPPFLAGS	+= -DVERSION=$(TRYST_VERSION)

#
# Additional flags to pass to the Objective-C compiler
#

ADDITIONAL_OBJCFLAGS	+= -pipe -O2			\
			   -fno-inline			\
			   -fno-strict-aliasing		\
			   -funroll-loops		\
			   -Wno-parentheses		\
			   -Wno-pointer-arith		\
			   -Wno-nested-externs		\
			   -Wno-protocol		\
			   -Wcast-align			\
			   -Wwrite-strings		\
			   -Werror

#
# Additional flags to pass to the C compiler
#

ADDITIONAL_CFLAGS	+=

#
# Additional include directories the compiler should search
#

ADDITIONAL_INCLUDE_DIRS	+= -I.

#
# Additional LDFLAGS to pass to the linker
#

ADDITIONAL_LDFLAGS	+= -s

#
# Additional library directories the linker should search
#

ADDITIONAL_LIB_DIRS	+=

#
# Additional tool directories the linker should search
#

ADDITIONAL_TOOL_LIBS	+=

#
# Additional directories to be created during installation
#

ADDITIONAL_INSTALL_DIRS	+=

#
# End of File.


syntax highlighted by Code2HTML, v. 0.9.1