1995-05-19 20:35:41 +00:00
|
|
|
#
|
|
|
|
# NSCharacterSet makefile for Objective-C Class 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
|
|
|
#
|
1996-04-17 20:17:45 +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
|
|
|
|
# Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
|
|
|
|
|
|
|
SHELL = /bin/sh
|
|
|
|
|
|
|
|
#### Start of system configuration section. ####
|
|
|
|
|
|
|
|
srcdir = @srcdir@
|
|
|
|
VPATH = @srcdir@
|
|
|
|
|
1995-06-20 16:06:33 +00:00
|
|
|
prefix = @prefix@
|
|
|
|
datadir = $(prefix)/share
|
|
|
|
charsetdir = $(datadir)/NSCharacterSets
|
|
|
|
|
1995-06-30 20:30:47 +00:00
|
|
|
INSTALL = @INSTALL@
|
|
|
|
INSTALL_PROGRAM = @INSTALL_PROGRAM@
|
|
|
|
INSTALL_DATA = @INSTALL_DATA@
|
|
|
|
|
1995-05-19 20:35:41 +00:00
|
|
|
#### End of system configuration section. ####
|
|
|
|
|
|
|
|
include $(srcdir)/../Makeconf
|
|
|
|
|
1995-06-20 16:06:33 +00:00
|
|
|
all:
|
|
|
|
|
1995-05-19 20:35:41 +00:00
|
|
|
CHARSET_FILES = \
|
|
|
|
alphanumCharSet.dat \
|
|
|
|
controlCharSet.dat \
|
|
|
|
decimalCharSet.dat \
|
|
|
|
decomposableCharSet.dat \
|
|
|
|
illegalCharSet.dat \
|
|
|
|
lettercharCharSet.dat \
|
|
|
|
nonbaseCharSet.dat \
|
|
|
|
uppercaseCharSet.dat \
|
|
|
|
whitespaceCharSet.dat \
|
|
|
|
whitespaceandnlCharSet.dat
|
|
|
|
|
|
|
|
RCS_FILES = Makefile.in
|
|
|
|
DIST_FILES = $(RCS_FILES) $(CHARSET_FILES) README.CharSet
|
1995-06-20 16:06:33 +00:00
|
|
|
INSTALL_FILES = $(CHARSET_FILES) README.CharSet
|
|
|
|
|
|
|
|
installdirs:
|
|
|
|
$(srcdir)/../mkinstalldirs $(charsetdir)
|
1995-06-30 20:30:47 +00:00
|
|
|
install: installdirs
|
1995-06-20 16:06:33 +00:00
|
|
|
for file in $(INSTALL_FILES); do \
|
1996-01-16 00:40:04 +00:00
|
|
|
$(INSTALL_DATA) $(srcdir)/$$file $(charsetdir)/$$file ; \
|
1995-06-20 16:06:33 +00:00
|
|
|
done
|
|
|
|
uninstall:
|
|
|
|
for file in $(INSTALL_FILES); do \
|
|
|
|
rm -f $(charsetdir)/$$file ; \
|
|
|
|
done
|
1995-05-19 20:35:41 +00:00
|
|
|
|
|
|
|
mostlyclean:
|
|
|
|
rm -f *~
|
|
|
|
clean: mostlyclean
|
|
|
|
distclean: clean
|
1996-07-15 18:41:44 +00:00
|
|
|
rm -f Makefile
|
1995-05-19 20:35:41 +00:00
|
|
|
maintainer-clean: distclean
|
|
|
|
|
|
|
|
copy-dist: $(DIST_FILES)
|
|
|
|
mkdir $(srcdir)/../snap/NSCharacterSets
|
|
|
|
ln $(DIST_FILES) $(srcdir)/../snap/NSCharacterSets
|
1996-01-16 00:40:04 +00:00
|
|
|
|
|
|
|
Makefile: $(srcdir)/Makefile.in
|
|
|
|
cd ..; $(SHELL) config.status
|