1995-05-19 20:35:41 +00:00
|
|
|
#
|
1997-09-23 21:00:33 +00:00
|
|
|
# NSCharacterSet makefile for GNUstep Base Library
|
1996-01-16 00:40:04 +00:00
|
|
|
# Copyright (C) 1995, 1996 Free Software Foundation, Inc.
|
1995-05-19 20:35:41 +00:00
|
|
|
#
|
1996-04-17 20:17:45 +00:00
|
|
|
# Written by: Andrew Kachites McCallum <mccallum@gnu.ai.mit.edu>
|
1995-05-19 20:35:41 +00:00
|
|
|
#
|
1997-09-23 21:00:33 +00:00
|
|
|
# This file is part of the GNUstep Base Library.
|
1995-05-19 20:35:41 +00:00
|
|
|
#
|
|
|
|
# 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
|
1995-05-19 20:35:41 +00:00
|
|
|
# License as published by the Free Software Foundation; either
|
2008-06-08 10:38:33 +00:00
|
|
|
# version 2 of the License, or (at your option) any later version.
|
1995-05-19 20:35:41 +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
|
1995-05-19 20:35:41 +00:00
|
|
|
# License along with this library; if not, write to the Free
|
2006-06-14 09:12:30 +00:00
|
|
|
# Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
|
|
|
|
# Boston, MA 02111 USA.
|
1995-05-19 20:35:41 +00:00
|
|
|
|
2007-02-20 00:09:10 +00:00
|
|
|
ifeq ($(GNUSTEP_MAKEFILES),)
|
|
|
|
GNUSTEP_MAKEFILES := $(shell gnustep-config --variable=GNUSTEP_MAKEFILES 2>/dev/null)
|
2009-05-04 07:23:46 +00:00
|
|
|
ifeq ($(GNUSTEP_MAKEFILES),)
|
2009-05-29 10:17:21 +00:00
|
|
|
$(warning )
|
|
|
|
$(warning Unable to obtain GNUSTEP_MAKEFILES setting from gnustep-config!)
|
|
|
|
$(warning Perhaps gnustep-make is not properly installed,)
|
|
|
|
$(warning so gnustep-config is not in your PATH.)
|
|
|
|
$(warning )
|
|
|
|
$(warning Your PATH is currently $(PATH))
|
|
|
|
$(warning )
|
2009-05-04 07:23:46 +00:00
|
|
|
endif
|
2007-02-20 00:09:10 +00:00
|
|
|
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
|
|
|
|
|
1998-02-06 17:22:46 +00:00
|
|
|
include $(GNUSTEP_MAKEFILES)/common.make
|
1995-05-19 20:35:41 +00:00
|
|
|
|
|
|
|
CHARSET_FILES = \
|
1999-04-11 18:00:04 +00:00
|
|
|
alphanumericCharSet.dat \
|
1995-05-19 20:35:41 +00:00
|
|
|
controlCharSet.dat \
|
1999-04-11 18:00:04 +00:00
|
|
|
decimalDigitCharSet.dat \
|
1995-05-19 20:35:41 +00:00
|
|
|
decomposableCharSet.dat \
|
|
|
|
illegalCharSet.dat \
|
1999-04-11 18:00:04 +00:00
|
|
|
letterCharSet.dat \
|
|
|
|
lowercaseLetterCharSet.dat \
|
|
|
|
nonBaseCharSet.dat \
|
1999-04-07 04:40:41 +00:00
|
|
|
punctuationCharSet.dat \
|
1999-04-11 18:00:04 +00:00
|
|
|
symbolAndOperatorCharSet.dat \
|
|
|
|
uppercaseLetterCharSet.dat \
|
|
|
|
whitespaceAndNlCharSet.dat \
|
|
|
|
whitespaceCharSet.dat
|
1995-05-19 20:35:41 +00:00
|
|
|
|
2005-02-27 10:46:19 +00:00
|
|
|
CTOOL_NAME = dataToHeader
|
|
|
|
dataToHeader_C_FILES = dataToHeader.c
|
|
|
|
|
|
|
|
include $(GNUSTEP_MAKEFILES)/ctool.make
|
|
|
|
|
|
|
|
after-all:: NSCharacterSetData.h
|
1995-05-19 20:35:41 +00:00
|
|
|
|
2005-02-27 10:46:19 +00:00
|
|
|
NSCharacterSetData.h: $(CHARSET_FILES)
|
2005-02-28 17:49:06 +00:00
|
|
|
$(GNUSTEP_OBJ_DIR_NAME)/dataToHeader $(CHARSET_FILES)
|
1996-01-16 00:40:04 +00:00
|
|
|
|