2001-03-02 15:37:20 +00:00
|
|
|
#
|
|
|
|
# Makefile.preamble
|
|
|
|
#
|
|
|
|
# Project specific makefile variables, and additional
|
|
|
|
#
|
2005-07-01 20:54:03 +00:00
|
|
|
# Copyright (C) 2005 Free Software Foundation, Inc.
|
2001-03-02 15:37:20 +00:00
|
|
|
# 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
|
2001-03-16 23:32:19 +00:00
|
|
|
# ADDITIONAL_CPPFLAGS +=
|
2001-03-02 15:37:20 +00:00
|
|
|
|
|
|
|
# Additional flags to pass to the Objective-C compiler
|
2001-03-16 23:32:19 +00:00
|
|
|
# ADDITIONAL_OBJCFLAGS +=
|
2001-03-02 15:37:20 +00:00
|
|
|
|
|
|
|
# Additional flags to pass to the C compiler
|
2001-03-16 23:32:19 +00:00
|
|
|
# ADDITIONAL_CFLAGS +=
|
2001-03-02 15:37:20 +00:00
|
|
|
|
|
|
|
# Additional include directories the compiler should search
|
2004-09-02 03:27:54 +00:00
|
|
|
ADDITIONAL_INCLUDE_DIRS += -I../Headers/Additions -I../Headers \
|
|
|
|
-I../Source/$(GNUSTEP_TARGET_DIR)
|
2001-03-02 15:37:20 +00:00
|
|
|
|
|
|
|
# Additional LDFLAGS to pass to the linker
|
2016-02-17 22:07:44 +00:00
|
|
|
# ADDITIONAL_LDFLAGS +=
|
2001-03-02 15:37:20 +00:00
|
|
|
|
|
|
|
# Additional library directories the linker should search
|
|
|
|
ADDITIONAL_LIB_DIRS += -L../Source/$(GNUSTEP_OBJ_DIR) -L../Model/$(GNUSTEP_OBJ_DIR)
|
|
|
|
|
|
|
|
# Additional libraries when linking tools
|
|
|
|
gpbs_TOOL_LIBS += -lgnustep-gui $(SYSTEM_LIBS)
|
|
|
|
set_show_service_TOOL_LIBS += -lgnustep-gui $(SYSTEM_LIBS)
|
2001-11-18 19:01:07 +00:00
|
|
|
gopen_TOOL_LIBS += -lgnustep-gui $(SYSTEM_LIBS)
|
2006-01-27 17:46:46 +00:00
|
|
|
gcloseall_TOOL_LIBS += -lgnustep-gui $(SYSTEM_LIBS)
|
2005-03-03 21:29:24 +00:00
|
|
|
GSspell_TOOL_LIBS += $(ADDITIONAL_DEPENDS)
|
2001-03-02 15:37:20 +00:00
|
|
|
|
|
|
|
# Additional libraries when linking applications
|
2001-03-16 23:32:19 +00:00
|
|
|
# ADDITIONAL_GUI_LIBS +=
|
2001-03-02 15:37:20 +00:00
|
|
|
|
|
|
|
#
|
|
|
|
# Flags dealing with installing and uninstalling
|
|
|
|
#
|
|
|
|
|
|
|
|
# Additional directories to be created during installation
|
2001-03-16 23:32:19 +00:00
|
|
|
# ADDITIONAL_INSTALL_DIRS +=
|