2000-10-27 15:54:35 +00:00
|
|
|
#
|
|
|
|
# Resources makefile for GNUstep Base Library
|
|
|
|
# Copyright (C) 2000 Free Software Foundation, Inc.
|
|
|
|
#
|
|
|
|
# Written by: Adam Fedor <fedor@doc.com>
|
|
|
|
# Date: Oct 2000
|
|
|
|
#
|
|
|
|
# This file is part of the GNUstep Base Library.
|
|
|
|
#
|
|
|
|
# This library is free software; you can redistribute it and/or
|
2007-09-14 11:36:11 +00:00
|
|
|
# modify it under the terms of the GNU Lesser General Public
|
2000-10-27 15:54:35 +00:00
|
|
|
# License as published by the Free Software Foundation; either
|
2007-09-14 11:36:11 +00:00
|
|
|
# version 3 of the License, or (at your option) any later version.
|
2000-10-27 15:54:35 +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.
|
|
|
|
#
|
2007-09-14 11:36:11 +00:00
|
|
|
# You should have received a copy of the GNU Lesser General Public
|
2000-10-27 15:54:35 +00:00
|
|
|
# License along with this library; if not, write to the Free
|
2007-02-19 14:26:53 +00:00
|
|
|
# Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
|
|
|
|
# Boston, MA 02111 USA.
|
2000-10-27 15:54:35 +00:00
|
|
|
|
2007-02-20 00:09:10 +00:00
|
|
|
ifeq ($(GNUSTEP_MAKEFILES),)
|
|
|
|
GNUSTEP_MAKEFILES := $(shell gnustep-config --variable=GNUSTEP_MAKEFILES 2>/dev/null)
|
|
|
|
endif
|
2007-02-19 14:26:53 +00:00
|
|
|
|
|
|
|
ifeq ($(GNUSTEP_MAKEFILES),)
|
|
|
|
$(error You need to set GNUSTEP_MAKEFILES before compiling!)
|
|
|
|
endif
|
|
|
|
|
2008-12-19 12:53:30 +00:00
|
|
|
PACKAGE_NAME = gnustep-base
|
2007-02-20 00:09:10 +00:00
|
|
|
GNUSTEP_LOCAL_ADDITIONAL_MAKEFILES=../base.make
|
|
|
|
|
2000-10-27 15:54:35 +00:00
|
|
|
include $(GNUSTEP_MAKEFILES)/common.make
|
|
|
|
|
2007-03-09 19:09:08 +00:00
|
|
|
include ../Version
|
|
|
|
libgnustep-base_INTERFACE_VERSION=$(MAJOR_VERSION).$(MINOR_VERSION)
|
|
|
|
|
2003-04-28 02:29:49 +00:00
|
|
|
RESOURCE_SET_NAME = base-resources
|
2007-02-14 12:07:33 +00:00
|
|
|
# This is for gnustep-make >= 14-02-2007
|
2007-03-09 19:09:08 +00:00
|
|
|
base-resources_INSTALL_DIR = $(GNUSTEP_LIBRARY)/Libraries/gnustep-base/Versions/$(libgnustep-base_INTERFACE_VERSION)/Resources
|
2007-02-14 12:07:33 +00:00
|
|
|
# This is kept temporarily for gnustep-make < 14-02-2007
|
|
|
|
base-resources_RESOURCE_FILES_INSTALL_DIR = /Library/Libraries/Resources/gnustep-base
|
2006-05-05 23:19:01 +00:00
|
|
|
base-resources_LANGUAGES = English German French Italian TraditionalChinese \
|
|
|
|
Spanish Esperanto Korean
|
2003-04-28 02:29:49 +00:00
|
|
|
base-resources_LOCALIZED_RESOURCE_FILES = Localizable.strings
|
|
|
|
base-resources_RESOURCE_DIRS = Languages
|
|
|
|
base-resources_RESOURCE_FILES = $(LANGUAGE_INSTALL_FILES)
|
2001-08-21 20:28:47 +00:00
|
|
|
|
|
|
|
LANGUAGE_FILES = \
|
2001-05-29 19:42:39 +00:00
|
|
|
Languages/Dutch \
|
2000-10-27 15:54:35 +00:00
|
|
|
Languages/English \
|
2001-02-23 23:36:31 +00:00
|
|
|
Languages/French \
|
2001-02-23 00:14:14 +00:00
|
|
|
Languages/German \
|
2004-03-24 20:54:27 +00:00
|
|
|
Languages/Hungarian \
|
2002-04-08 05:52:07 +00:00
|
|
|
Languages/Italian \
|
|
|
|
Languages/Russian \
|
2005-05-10 10:28:42 +00:00
|
|
|
Languages/Spanish \
|
2003-08-02 20:56:55 +00:00
|
|
|
Languages/TraditionalChinese \
|
2002-04-18 16:03:05 +00:00
|
|
|
Languages/Slovak \
|
2006-05-05 23:19:01 +00:00
|
|
|
Languages/Ukrainian \
|
|
|
|
Languages/Esperanto \
|
|
|
|
Languages/Korean
|
2002-10-22 03:22:30 +00:00
|
|
|
LANGUAGE_INSTALL_FILES = $(LANGUAGE_FILES) Languages/Locale.aliases \
|
|
|
|
Languages/Locale.encodings
|
2000-10-27 15:54:35 +00:00
|
|
|
|
|
|
|
-include GNUmakefile.local
|
|
|
|
|
2003-04-28 02:29:49 +00:00
|
|
|
include $(GNUSTEP_MAKEFILES)/resource-set.make
|
2000-10-27 15:54:35 +00:00
|
|
|
|
|
|
|
-include GNUmakefile.postamble
|
2001-08-21 20:28:47 +00:00
|
|
|
|