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

#
# 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	+=

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

ADDITIONAL_OBJCFLAGS	+= -pipe -O2 -I. -I..                   \
                           -fno-inline                          \
                           -fno-strict-aliasing                 \
                           -funroll-loops                       \
                           -Wno-parentheses                     \
                           -Wno-protocol                        \
                           -Wno-pointer-arith                   \
                           -Wcast-align                         \
                           -Wwrite-strings                      \
                           -Wno-nested-externs                  \
                           -DVERSION=$(TRYST_VERSION)

ADDITIONAL_OBJCFLAGS    += -Werror

#
# Additional flags to pass to the C compiler
#

ADDITIONAL_CFLAGS	+=

#
# Additional include directories the compiler should search
#

ADDITIONAL_INCLUDE_DIRS	+=

#
# Additional LDFLAGS to pass to the linker
#

ADDITIONAL_LDFLAGS	+= -lTryst

#
# Additional library directories the linker should search
#

ADDITIONAL_LIB_DIRS	+=
# -L../DNSServiceDiscovery.framework/Versions/Current/

#
# 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