mirror of https://github.com/fltk/fltk
Deleted unused files in src/xutf8
git-svn-id: file:///fltk/svn/fltk/branches/branch-1.3@8270 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
This commit is contained in:
parent
b4f08251b1
commit
129ae3ecd0
|
@ -1,132 +0,0 @@
|
|||
#
|
||||
# "$Id: Makefile,v 1.1.2.6 2004/09/08 16:04:42 easysw Exp $"
|
||||
#
|
||||
# Xutf8 library makefile for the Fast Light Toolkit (FLTK).
|
||||
#
|
||||
# Copyright 1997-2005 by Jean-Marc Lienher.
|
||||
#
|
||||
# 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307
|
||||
# USA.
|
||||
#
|
||||
# Please report all bugs and problems on the following page:
|
||||
#
|
||||
# http://www.fltk.org/str.php
|
||||
#
|
||||
|
||||
include ../../makeinclude
|
||||
|
||||
|
||||
#
|
||||
# Object files... set this based on the operating system and host
|
||||
#
|
||||
UNAME := $(shell uname)
|
||||
|
||||
ifeq '$(OS)' "Windows_NT"
|
||||
OBJS = case.o is_right2left.o is_spacing.o
|
||||
endif # end of WIN32 options
|
||||
|
||||
ifeq ($(strip $(UNAME)),Linux)
|
||||
OBJS = case.o is_right2left.o is_spacing.o \
|
||||
keysym2Ucs.o utf8Input.o utf8Utils.o \
|
||||
utf8Wrap.o
|
||||
endif # end of linux options
|
||||
|
||||
ifeq ($(strip $(UNAME)),Darwin)
|
||||
OBJS = case.o is_right2left.o is_spacing.o
|
||||
endif # end of OSX options
|
||||
|
||||
|
||||
|
||||
XUTF8 = ../../lib/libfltk_xutf8$(LIBEXT)
|
||||
|
||||
|
||||
#
|
||||
# Make all targets...
|
||||
#
|
||||
|
||||
all: $(XUTF8) $(XDSONAME)
|
||||
|
||||
|
||||
#
|
||||
# Clean all targets and object files...
|
||||
#
|
||||
|
||||
clean:
|
||||
$(RM) $(OBJS)
|
||||
$(RM) $(XUTF8) $(XDSONAME) libfltk_xutf8.so
|
||||
|
||||
|
||||
#
|
||||
# Install everything...
|
||||
#
|
||||
|
||||
install: $(XUTF8)
|
||||
echo "Installing libfltk_xutf8$(LIBEXT) in $(libdir)..."
|
||||
-$(MKDIR) $(libdir)
|
||||
$(RM) $(libdir)/libfltk_xutf8$(LIBEXT)
|
||||
$(CP) $(XUTF8) $(libdir)
|
||||
$(RANLIB) $(libdir)/libfltk_xutf8$(LIBEXT)
|
||||
if test x$(XDSONAME) = xlibfltk_xutf8.so.1.1; then\
|
||||
$(RM) $(DESTDIR)$(libdir)/libfltk_xutf8.so*;\
|
||||
$(CP) libfltk_xutf8.so.1.1 $(DESTDIR)$(libdir); \
|
||||
$(CHMOD) 755 $(DESTDIR)$(libdir)/libfltk_xutf8.so.1.1; \
|
||||
$(LN) libfltk_xutf8.so.1.1 $(DESTDIR)$(libdir)/libfltk_xutf8.so;\
|
||||
fi
|
||||
|
||||
|
||||
#
|
||||
# Uninstall everything...
|
||||
#
|
||||
|
||||
uninstall:
|
||||
echo "Uninstalling libfltk_xutf8$(LIBEXT) in $(libdir)..."
|
||||
$(RM) $(libdir)/libfltk_xutf8$(LIBEXT)
|
||||
if test x$(XDSONAME) = xlibfltk_xutf8.so.1.1; then\
|
||||
$(RM) $(DESTDIR)$(libdir)/libfltk_xutf8.so*;\
|
||||
fi
|
||||
|
||||
|
||||
#
|
||||
# libfltk_xutf8.a
|
||||
#
|
||||
|
||||
$(XUTF8): $(OBJS)
|
||||
echo Archiving $@...
|
||||
$(RM) $@
|
||||
$(LIBCOMMAND) $@ $(OBJS)
|
||||
$(RANLIB) $@
|
||||
|
||||
libfltk_xutf8.so.1.1: $(OBJS)
|
||||
echo $(DSOCOMMAND) $@ ...
|
||||
$(DSOCOMMAND) $@ $(OBJS)
|
||||
$(RM) libfltk_xutf8.so
|
||||
$(LN) libfltk_xutf8.so.1.1 libfltk_xutf8.so
|
||||
|
||||
#
|
||||
# Make dependencies...
|
||||
#
|
||||
|
||||
depend: $(OBJS:.o=.c)
|
||||
makedepend -Y -I.. -f makedepend $(OBJS:.o=.c)
|
||||
|
||||
include makedepend
|
||||
|
||||
$(OBJS): ../../makeinclude
|
||||
|
||||
|
||||
#
|
||||
# End of "$Id: Makefile,v 1.1.2.6 2004/09/08 16:04:42 easysw Exp $".
|
||||
#
|
||||
# DO NOT DELETE
|
|
@ -1,104 +0,0 @@
|
|||
#
|
||||
# "$Id: Makefile,v 1.1.2.6 2004/09/08 16:04:42 easysw Exp $"
|
||||
#
|
||||
# Xutf8 library makefile for the Fast Light Toolkit (FLTK).
|
||||
#
|
||||
# Copyright 1997-2004 by Easy Software Products.
|
||||
#
|
||||
# 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307
|
||||
# USA.
|
||||
#
|
||||
# Please report all bugs and problems on the following page:
|
||||
#
|
||||
# http://www.fltk.org/str.php
|
||||
#
|
||||
|
||||
include ../makeinclude
|
||||
|
||||
|
||||
#
|
||||
# Object files...
|
||||
#
|
||||
|
||||
OBJS = case.o imKStoUCS.o is_right2left.o is_spacing.o \
|
||||
keysym2Ucs.o ucs2fontmap.o utf8Input.o utf8Utils.o \
|
||||
utf8Wrap.o
|
||||
|
||||
XUTF8 = ../lib/libfltk_xutf8$(LIBEXT)
|
||||
|
||||
|
||||
#
|
||||
# Make all targets...
|
||||
#
|
||||
|
||||
all: $(XUTF8)
|
||||
|
||||
|
||||
#
|
||||
# Clean all targets and object files...
|
||||
#
|
||||
|
||||
clean:
|
||||
$(RM) $(OBJS)
|
||||
$(RM) $(XUTF8)
|
||||
|
||||
|
||||
#
|
||||
# Install everything...
|
||||
#
|
||||
|
||||
install: $(XUTF8)
|
||||
echo "Installing libfltk_xutf8$(LIBEXT) in $(libdir)..."
|
||||
-$(MKDIR) $(libdir)
|
||||
$(RM) $(libdir)/libfltk_xutf8$(LIBEXT)
|
||||
$(CP) $(XUTF8) $(libdir)
|
||||
$(RANLIB) $(libdir)/libfltk_xutf8$(LIBEXT)
|
||||
|
||||
|
||||
#
|
||||
# Uninstall everything...
|
||||
#
|
||||
|
||||
uninstall:
|
||||
echo "Uninstalling libfltk_xutf8$(LIBEXT) in $(libdir)..."
|
||||
$(RM) $(libdir)/libfltk_xutf8$(LIBEXT)
|
||||
|
||||
|
||||
#
|
||||
# libfltk_xutf8.a
|
||||
#
|
||||
|
||||
$(XUTF8): $(OBJS)
|
||||
echo Archiving $@...
|
||||
$(RM) $@
|
||||
$(LIBCOMMAND) $@ $(OBJS)
|
||||
$(RANLIB) $@
|
||||
|
||||
#
|
||||
# Make dependencies...
|
||||
#
|
||||
|
||||
depend: $(OBJS:.o=.c)
|
||||
makedepend -Y -I.. -f makedepend $(OBJS:.o=.c)
|
||||
|
||||
include makedepend
|
||||
|
||||
$(OBJS): ../makeinclude
|
||||
|
||||
|
||||
#
|
||||
# End of "$Id: Makefile,v 1.1.2.6 2004/09/08 16:04:42 easysw Exp $".
|
||||
#
|
||||
# DO NOT DELETE
|
|
@ -1,27 +0,0 @@
|
|||
# DO NOT DELETE
|
||||
|
||||
case.o: headers/case.h
|
||||
is_spacing.o: headers/spacing.h
|
||||
keysym2Ucs.o: imKStoUCS.c Xlibint.h Ximint.h
|
||||
ucs2fontmap.o: lcUniConv/big5.h lcUniConv/gb2312.h lcUniConv/iso8859_10.h
|
||||
ucs2fontmap.o: lcUniConv/iso8859_11.h lcUniConv/iso8859_13.h
|
||||
ucs2fontmap.o: lcUniConv/iso8859_14.h lcUniConv/iso8859_15.h
|
||||
ucs2fontmap.o: lcUniConv/iso8859_2.h lcUniConv/iso8859_3.h
|
||||
ucs2fontmap.o: lcUniConv/iso8859_4.h lcUniConv/iso8859_5.h
|
||||
ucs2fontmap.o: lcUniConv/iso8859_6.h lcUniConv/iso8859_7.h
|
||||
ucs2fontmap.o: lcUniConv/iso8859_8.h lcUniConv/iso8859_9.h
|
||||
ucs2fontmap.o: lcUniConv/jisx0201.h lcUniConv/jisx0208.h lcUniConv/jisx0212.h
|
||||
ucs2fontmap.o: lcUniConv/koi8_r.h lcUniConv/koi8_u.h lcUniConv/ksc5601.h
|
||||
ucs2fontmap.o: lcUniConv/cp1251.h headers/symbol_.h headers/dingbats_.h
|
||||
utf8Input.o: lcUniConv/big5.h lcUniConv/gb2312.h lcUniConv/jisx0201.h
|
||||
utf8Input.o: lcUniConv/jisx0208.h lcUniConv/jisx0212.h lcUniConv/ksc5601.h
|
||||
utf8Wrap.o: ucs2fontmap.c lcUniConv/big5.h lcUniConv/gb2312.h
|
||||
utf8Wrap.o: lcUniConv/iso8859_10.h lcUniConv/iso8859_11.h
|
||||
utf8Wrap.o: lcUniConv/iso8859_13.h lcUniConv/iso8859_14.h
|
||||
utf8Wrap.o: lcUniConv/iso8859_15.h lcUniConv/iso8859_2.h
|
||||
utf8Wrap.o: lcUniConv/iso8859_3.h lcUniConv/iso8859_4.h lcUniConv/iso8859_5.h
|
||||
utf8Wrap.o: lcUniConv/iso8859_6.h lcUniConv/iso8859_7.h lcUniConv/iso8859_8.h
|
||||
utf8Wrap.o: lcUniConv/iso8859_9.h lcUniConv/jisx0201.h lcUniConv/jisx0208.h
|
||||
utf8Wrap.o: lcUniConv/jisx0212.h lcUniConv/koi8_r.h lcUniConv/koi8_u.h
|
||||
utf8Wrap.o: lcUniConv/ksc5601.h lcUniConv/cp1251.h headers/symbol_.h
|
||||
utf8Wrap.o: headers/dingbats_.h
|
Loading…
Reference in New Issue