1#  GNUmakefile.preamble
2#
3#  Copyright (C) 2001 Free Software Foundation, Inc.
4#
5#  Author: Philippe C.D. Robert <prh@3dkit.org>
6#
7#  This file is part of GNUstep
8#
9#  This library is free software; you can redistribute it and/or
10#  modify it under the terms of the GNU Lesser General Public
11#  License as published by the Free Software Foundation; either
12#  version 2 of the License, or (at your option) any later version.
13#
14#  This library is distributed in the hope that it will be useful,
15#  but WITHOUT ANY WARRANTY; without even the implied warranty of
16#  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.	 See the GNU
17#  Lesser General Public License for more details.
18#
19#  You should have received a copy of the GNU Lesser General Public
20#  License along with this library; see the file COPYING.LIB.
21#  If not, see <http://www.gnu.org/licenses/> or write to the
22#  Free Software Foundation, 51 Franklin Street, Fifth Floor,
23#  Boston, MA 02110-1301, USA.
24
25#
26#   Makefile.preamble
27#
28#   Project specific makefile variables, and additional
29#
30#   Do not put any Makefile rules in this file, instead they should
31#   be put into Makefile.postamble.
32#
33
34#
35# Flags dealing with compiling and linking
36#
37
38# Additional flags to pass to the preprocessor
39ADDITIONAL_CPPFLAGS += -Wall
40
41# Additional flags to pass to the Objective-C compiler
42ADDITIONAL_OBJCFLAGS +=
43
44# Additional flags to pass to the C compiler
45ADDITIONAL_CFLAGS +=
46#ADDITIONAL_CFLAGS +=
47
48# Additional include directories the compiler should search
49ADDITIONAL_INCLUDE_DIRS +=-I../../Headers/Additions -I../../Headers
50
51# Additional LDFLAGS to pass to the linker
52#ADDITIONAL_LDFLAGS +=
53
54# Additional library directories the linker should search
55ADDITIONAL_LIB_DIRS += -L../../Source/$(GNUSTEP_OBJ_DIR)
56
57#ADDITIONAL_TOOL_LIBS +=
58
59RTFConverter_BUNDLE_LIBS += -lgnustep-gui
60
61#
62# Flags dealing with installing and uninstalling
63#
64
65# Additional directories to be created during installation
66#ADDITIONAL_INSTALL_DIRS +=
67
68#
69# Local configuration
70#
71
72
73
74