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
|
|
|
|
# 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.
|
|
|
|
#
|
|
|
|
# You should have received a copy of the GNU Library General Public
|
|
|
|
# License along with this library; if not, write to the Free
|
1999-09-09 02:56:20 +00:00
|
|
|
# Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111 USA.
|
1995-05-19 20:35:41 +00:00
|
|
|
|
1997-10-30 22:23:50 +00:00
|
|
|
# Install into the system root by default
|
|
|
|
GNUSTEP_INSTALLATION_DIR = $(GNUSTEP_SYSTEM_ROOT)
|
|
|
|
|
1998-02-06 17:22:46 +00:00
|
|
|
GNUSTEP_MAKEFILES = $(GNUSTEP_SYSTEM_ROOT)/Makefiles
|
1998-02-05 15:51:18 +00:00
|
|
|
|
1998-02-06 17:22:46 +00:00
|
|
|
include $(GNUSTEP_MAKEFILES)/common.make
|
1995-05-19 20:35:41 +00:00
|
|
|
|
1997-09-23 21:00:33 +00:00
|
|
|
include ../Version
|
|
|
|
include ../config.mak
|
1995-05-19 20:35:41 +00:00
|
|
|
|
1999-04-23 02:54:45 +00:00
|
|
|
charsetdir = $(GNUSTEP_RESOURCES)/NSCharacterSets
|
1995-06-20 16:06:33 +00:00
|
|
|
|
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
|
|
|
|
1997-10-31 22:04:49 +00:00
|
|
|
RCS_FILES = GNUmakefile Makefile.postamble
|
1995-05-19 20:35:41 +00:00
|
|
|
DIST_FILES = $(RCS_FILES) $(CHARSET_FILES) README.CharSet
|
1995-06-20 16:06:33 +00:00
|
|
|
INSTALL_FILES = $(CHARSET_FILES) README.CharSet
|
|
|
|
|
1997-09-23 21:00:33 +00:00
|
|
|
-include Makefile.preamble
|
1995-05-19 20:35:41 +00:00
|
|
|
|
1997-09-23 21:00:33 +00:00
|
|
|
# We don't actually build anything in this directory so
|
|
|
|
# just include the common makefile rules
|
1998-02-06 17:22:46 +00:00
|
|
|
include $(GNUSTEP_MAKEFILES)/rules.make
|
1996-01-16 00:40:04 +00:00
|
|
|
|
1997-09-23 21:00:33 +00:00
|
|
|
-include Makefile.postamble
|