2002-11-15 22:57:05 +00:00
|
|
|
#
|
|
|
|
# Makefile.preamble
|
|
|
|
#
|
2005-08-17 08:07:57 +00:00
|
|
|
# Copyright (C) 2000-2002,2004,2005 Free Software Foundation, Inc.
|
2002-11-15 22:57:05 +00:00
|
|
|
#
|
2006-09-14 16:06:21 +00:00
|
|
|
# Author: Mirko Viviani <mirko.viviani@gmail.com>
|
2002-11-15 22:57:05 +00:00
|
|
|
#
|
|
|
|
# This file is part of the GNUstep Database Library.
|
|
|
|
#
|
|
|
|
# This library is free software; you can redistribute it and/or
|
|
|
|
# modify it under the terms of the GNU Library General Public
|
|
|
|
# License as published by the Free Software Foundation; either
|
2007-07-12 06:39:22 +00:00
|
|
|
# version 3 of the License, or (at your option) any later version.
|
2002-11-15 22:57:05 +00:00
|
|
|
#
|
|
|
|
# This library is distributed in the hope that it will be useful,
|
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
# Library General Public License for more details.
|
|
|
|
#
|
|
|
|
# You should have received a copy of the GNU Library General Public
|
2005-08-17 08:07:57 +00:00
|
|
|
# License along with this library; see the file COPYING.LIB.
|
|
|
|
# If not, write to the Free Software Foundation, Inc.,
|
|
|
|
# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
2002-11-15 22:57:05 +00:00
|
|
|
#
|
|
|
|
|
|
|
|
#
|
|
|
|
# Makefile.preamble
|
|
|
|
#
|
|
|
|
# Project specific makefile variables, and additional
|
|
|
|
#
|
|
|
|
# Do not put any Makefile rules in this file, instead they should
|
|
|
|
# be put into Makefile.postamble.
|
|
|
|
#
|
|
|
|
|
|
|
|
#
|
|
|
|
# Flags dealing with compiling and linking
|
|
|
|
#
|
|
|
|
|
|
|
|
# Additional flags to pass to the preprocessor
|
2004-03-06 12:18:08 +00:00
|
|
|
ADDITIONAL_CPPFLAGS +=
|
2002-11-15 22:57:05 +00:00
|
|
|
|
|
|
|
# Additional flags to pass to the Objective-C compiler
|
2004-03-06 12:18:08 +00:00
|
|
|
ADDITIONAL_OBJCFLAGS +=
|
2002-11-15 22:57:05 +00:00
|
|
|
|
|
|
|
# Additional flags to pass to the C compiler
|
2004-03-06 12:18:08 +00:00
|
|
|
ADDITIONAL_CFLAGS +=
|
2002-11-15 22:57:05 +00:00
|
|
|
|
|
|
|
# Additional include directories the compiler should search
|
2004-03-06 12:18:08 +00:00
|
|
|
ADDITIONAL_INCLUDE_DIRS += \
|
2004-02-19 13:45:07 +00:00
|
|
|
-I../../EOControl/$(GNUSTEP_TARGET_DIR) \
|
2004-03-06 12:18:08 +00:00
|
|
|
-I../..
|
2002-11-15 22:57:05 +00:00
|
|
|
|
2004-04-15 14:18:50 +00:00
|
|
|
# Libraries linked to the framework
|
2006-09-14 21:11:01 +00:00
|
|
|
ADDITIONAL_NATIVE_LIBS+=EOAccess EOControl
|
2007-11-22 08:39:48 +00:00
|
|
|
ADDITIONAL_NATIVE_LIB_DIRS+=../../EOControl ../../EOAccess
|
2004-04-15 14:18:50 +00:00
|
|
|
ifneq ($(FOUNDATION_LIB),gnu)
|
|
|
|
LIBRARIES_DEPEND_UPON += -lgnustep-baseadd
|
|
|
|
endif
|
2002-11-15 22:57:05 +00:00
|
|
|
|
|
|
|
#
|
|
|
|
# Flags dealing with installing and uninstalling
|
|
|
|
#
|
|
|
|
|
|
|
|
# Additional directories to be created during installation
|
|
|
|
ADDITIONAL_INSTALL_DIRS =
|
2004-03-06 12:18:08 +00:00
|
|
|
|
2006-09-14 21:11:01 +00:00
|
|
|
include config.mak
|