2002-06-02 21:00:34 +00:00
|
|
|
#
|
|
|
|
# ColorPickers makefile for GNUstep GUI
|
|
|
|
#
|
|
|
|
# Copyright (C) 2000 Free Software Foundation, Inc.
|
|
|
|
#
|
|
|
|
# Author: Fred Kiefer <FredKiefer@gmx.de>
|
|
|
|
# Author: Alexander Malmberg <alexander@malmberg.org>
|
|
|
|
# Date: May 2002
|
|
|
|
#
|
|
|
|
# This file is part of the GNUstep GUI.
|
|
|
|
#
|
|
|
|
# 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
|
|
|
|
# version 2 of the License, or (at your option) any later version.
|
|
|
|
#
|
|
|
|
# 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.
|
|
|
|
#
|
|
|
|
# If you are interested in a warranty or support for this source code,
|
|
|
|
# contact Scott Christley at scottc@net-community.com
|
|
|
|
#
|
|
|
|
# You should have received a copy of the GNU Library General Public
|
|
|
|
# License along with this library; see the file COPYING.LIB.
|
|
|
|
# If not, write to the Free Software Foundation,
|
2005-05-26 02:52:46 +00:00
|
|
|
# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
2002-06-02 21:00:34 +00:00
|
|
|
|
|
|
|
GNUSTEP_INSTALLATION_DIR = $(GNUSTEP_SYSTEM_ROOT)
|
|
|
|
|
|
|
|
GNUSTEP_LOCAL_ADDITIONAL_MAKEFILES = ../gui.make
|
|
|
|
include $(GNUSTEP_MAKEFILES)/common.make
|
|
|
|
|
|
|
|
# The color picker bundle to be compiled
|
2003-07-26 13:27:55 +00:00
|
|
|
BUNDLE_NAME = StandardPicker NamedPicker WheelPicker
|
2002-06-02 21:00:34 +00:00
|
|
|
|
2003-04-28 02:33:10 +00:00
|
|
|
BUNDLE_INSTALL_DIR = $(GNUSTEP_LIBRARY)/ColorPickers
|
2002-06-02 21:00:34 +00:00
|
|
|
|
2003-07-31 23:52:10 +00:00
|
|
|
ADDITIONAL_INCLUDE_DIRS += -I../Headers/Additions -I../Headers
|
2002-06-02 21:00:34 +00:00
|
|
|
|
2003-02-05 15:04:43 +00:00
|
|
|
ADDITIONAL_LIB_DIRS += -L../Source/$(GNUSTEP_OBJ_DIR) -L../Models/$(GNUSTEP_OBJ_DIR)
|
|
|
|
|
2002-06-02 21:00:34 +00:00
|
|
|
# The Objective-C source files to be compiled
|
|
|
|
StandardPicker_OBJC_FILES = GSStandardColorPicker.m \
|
|
|
|
GSRGBColorPicker.m \
|
|
|
|
GSCMYKColorPicker.m \
|
|
|
|
GSHSBColorPicker.m \
|
|
|
|
GSGrayColorPicker.m
|
|
|
|
NamedPicker_OBJC_FILES = GSNamedColorPicker.m
|
|
|
|
WheelPicker_OBJC_FILES = GSWheelColorPicker.m
|
|
|
|
|
|
|
|
# The class to load
|
|
|
|
StandardPicker_PRINCIPAL_CLASS = GSStandardColorPicker
|
|
|
|
NamedPicker_PRINCIPAL_CLASS = GSNamedColorPicker
|
|
|
|
WheelPicker_PRINCIPAL_CLASS = GSWheelColorPicker
|
|
|
|
|
|
|
|
# The Resource files to be copied into the app's resources directory
|
|
|
|
StandardPicker_RESOURCE_FILES = GSRGBColorPicker.tiff \
|
|
|
|
GSHSBColorPicker.tiff \
|
|
|
|
GSGrayColorPicker.tiff \
|
|
|
|
GSCMYKColorPicker.tiff
|
|
|
|
StandardPicker_LOCALIZED_RESOURCE_FILES = StandardPicker.strings
|
|
|
|
StandardPicker_LANGUAGES = English French Swedish
|
|
|
|
|
|
|
|
NamedPicker_RESOURCE_FILES = GSNamedColorPicker.tiff
|
|
|
|
WheelPicker_RESOURCE_FILES = GSWheelColorPicker.tiff
|
|
|
|
|
|
|
|
-include GNUmakefile.preamble
|
|
|
|
|
|
|
|
-include GNUmakefile.local
|
|
|
|
|
|
|
|
include $(GNUSTEP_MAKEFILES)/bundle.make
|
|
|
|
|
|
|
|
-include GNUmakefile.postamble
|
|
|
|
|