From 23f5248103a7e30415eab21412ac71de85c8b1d1 Mon Sep 17 00:00:00 2001 From: Masanori Ogino Date: Mon, 4 Dec 2023 10:55:57 +0900 Subject: [PATCH] Remove imake-related files Signed-off-by: Masanori Ogino --- Imakefile | 64 ----------------- demo/Imakefile | 63 ---------------- dict/Imakefile | 41 ----------- dict/dict/Imakefile | 67 ----------------- dict/tool/Imakefile | 79 -------------------- doc/Imakefile | 46 ------------ doc/doc/Imakefile | 49 ------------- doc/man/Imakefile | 58 --------------- kanakan/Imakefile | 172 -------------------------------------------- server/Imakefile | 84 ---------------------- sj3.tmpl | 64 ----------------- sj3/Imakefile | 105 --------------------------- sj3dic/Imakefile | 81 --------------------- sj3lib/Imakefile | 55 -------------- sj3stat/Imakefile | 61 ---------------- 15 files changed, 1089 deletions(-) delete mode 100644 Imakefile delete mode 100644 demo/Imakefile delete mode 100644 dict/Imakefile delete mode 100644 dict/dict/Imakefile delete mode 100644 dict/tool/Imakefile delete mode 100644 doc/Imakefile delete mode 100644 doc/doc/Imakefile delete mode 100644 doc/man/Imakefile delete mode 100644 kanakan/Imakefile delete mode 100644 server/Imakefile delete mode 100644 sj3.tmpl delete mode 100644 sj3/Imakefile delete mode 100644 sj3dic/Imakefile delete mode 100644 sj3lib/Imakefile delete mode 100644 sj3stat/Imakefile diff --git a/Imakefile b/Imakefile deleted file mode 100644 index 1d1b24c..0000000 --- a/Imakefile +++ /dev/null @@ -1,64 +0,0 @@ -/* - * Copyright (c) 1991-1994 Sony Corporation - * - * Permission is hereby granted, free of charge, to any person obtaining - * a copy of this software and associated documentation files (the - * "Software"), to deal in the Software without restriction, including - * without limitation the rights to use, copy, modify, merge, publish, - * distribute, sublicense, and/or sell copies of the Software, and to - * permit persons to whom the Software is furnished to do so, subject to - * the following conditions: - * - * The above copyright notice and this permission notice shall be - * included in all copies or substantial portions of the Software. - * - * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, - * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF - * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. - * IN NO EVENT SHALL SONY CORPORATION BE LIABLE FOR ANY CLAIM, - * DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR - * OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR - * THE USE OR OTHER DEALINGS IN THE SOFTWARE. - * - * Except as contained in this notice, the name of Sony Corporation - * shall not be used in advertising or otherwise to promote the sale, use - * or other dealings in this Software without prior written authorization - * from Sony Corporation. - */ - -/* - * $SonyRCSfile: Imakefile,v $ - * $SonyRevision: 1.5 $ - * $SonyDate: 1997/01/23 11:50:09 $ - */ - -#include "sj3.tmpl" - -#define IHaveSubdirs -#define PassCDebugFlags 'CDEBUGFLAGS=$(CDEBUGFLAGS)' - -/* - * Add make rules to install manpages and other documents. - * Patched by Hidekazu Kuroki(hidekazu@cs.titech.ac.jp) 1996/8/10 - */ - -SUBDIRS = dict doc kanakan server sj3lib sj3 sj3dic sj3stat demo - -AllTarget(includes) -MakeSubdirs($(SUBDIRS)) -DependSubdirs($(SUBDIRS)) - -includes:: sj3.tmpl - cp include/Paths.h.in include/Paths.h - chmod +w include/Paths.h - (echo "#define RunCmdFile \"$(SJ3CONFDIR)/serverrc\""; \ @@\ - echo "#define DictRootDir \"$(SJ3DICTDIR)\""; \ @@\ - echo ""; \ @@\ - echo "#define DEFRKFILE \"$(SJ3CONFDIR)/sjrk\""; \ @@\ - echo "#define DEFRCFILE \"$(SJ3CONFDIR)/sjrc\""; \ @@\ - echo "#define DEFKEYFILE \"$(SJ3CONFDIR)/cvtkey.\"") \ @@\ - >> include/Paths.h - -clean:: - rm -f include/Paths.h - diff --git a/demo/Imakefile b/demo/Imakefile deleted file mode 100644 index 6b25993..0000000 --- a/demo/Imakefile +++ /dev/null @@ -1,63 +0,0 @@ -/* - * Copyright (c) 1994 Sony Corporation - * - * Permission is hereby granted, free of charge, to any person obtaining - * a copy of this software and associated documentation files (the - * "Software"), to deal in the Software without restriction, including - * without limitation the rights to use, copy, modify, merge, publish, - * distribute, sublicense, and/or sell copies of the Software, and to - * permit persons to whom the Software is furnished to do so, subject to - * the following conditions: - * - * The above copyright notice and this permission notice shall be - * included in all copies or substantial portions of the Software. - * - * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, - * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF - * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. - * IN NO EVENT SHALL SONY CORPORATION BE LIABLE FOR ANY CLAIM, - * DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR - * OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR - * THE USE OR OTHER DEALINGS IN THE SOFTWARE. - * - * Except as contained in this notice, the name of Sony Corporation - * shall not be used in advertising or otherwise to promote the sale, use - * or other dealings in this Software without prior written authorization - * from Sony Corporation. - */ - -/* - * $SonyRCSfile: Imakefile,v $ - * $SonyRevision: 1.1 $ - * $SonyDate: 1994/06/03 08:00:14 $ - */ - -DEFINES = -DORG -LOCAL_LIBRARIES = ../sj3lib/libsj3lib.a -#ifdef SonySysvArchitecture -SYS_LIBRARIES = -ljcode -#endif -INCLUDES = -I../sj3h -I../include -I../sj3lib -RKDIR = ../sj3rkcv -DEPLIBS = $(LOCAL_LIBRARIES) - -SRC1 = sample.c - -SRC2 = $(RKDIR)/rk_conv.c \ - $(RKDIR)/sj3_rkcv.c \ - $(RKDIR)/wc16_str.c - -SRC = $(SRC1) $(SRC2) - -OBJS = sample.o rk_conv.o sj3_rkcv.o wc16_str.o - -AllTarget(sample) -NormalProgramTarget(sample,$(OBJS),$(DEPLIBS),$(LOCAL_LIBRARIES),) -DependTarget() -LinkSourceFile(rk_conv.c,$(RKDIR)) -LinkSourceFile(sj3_rkcv.c,$(RKDIR)) -LinkSourceFile(wc16_str.c,$(RKDIR)) - - - - diff --git a/dict/Imakefile b/dict/Imakefile deleted file mode 100644 index 7f777ec..0000000 --- a/dict/Imakefile +++ /dev/null @@ -1,41 +0,0 @@ -/* - * Copyright (c) 1991-1994 Sony Corporation - * - * Permission is hereby granted, free of charge, to any person obtaining - * a copy of this software and associated documentation files (the - * "Software"), to deal in the Software without restriction, including - * without limitation the rights to use, copy, modify, merge, publish, - * distribute, sublicense, and/or sell copies of the Software, and to - * permit persons to whom the Software is furnished to do so, subject to - * the following conditions: - * - * The above copyright notice and this permission notice shall be - * included in all copies or substantial portions of the Software. - * - * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, - * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF - * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. - * IN NO EVENT SHALL SONY CORPORATION BE LIABLE FOR ANY CLAIM, - * DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR - * OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR - * THE USE OR OTHER DEALINGS IN THE SOFTWARE. - * - * Except as contained in this notice, the name of Sony Corporation - * shall not be used in advertising or otherwise to promote the sale, use - * or other dealings in this Software without prior written authorization - * from Sony Corporation. - */ - -/* - * $SonyRCSfile: Imakefile,v $ - * $SonyRevision: 1.1 $ - * $SonyDate: 1994/06/03 08:00:16 $ - */ - -#define IHaveSubdirs -#define PassCDebugFlags 'CDEBUGFLAGS=$(CDEBUGFLAGS)' - -SUBDIRS = tool dict - -MakeSubdirs($(SUBDIRS)) -DependSubdirs($(SUBDIRS)) diff --git a/dict/dict/Imakefile b/dict/dict/Imakefile deleted file mode 100644 index 4211255..0000000 --- a/dict/dict/Imakefile +++ /dev/null @@ -1,67 +0,0 @@ -/* - * Copyright (c) 1991-1994 Sony Corporation - * - * Permission is hereby granted, free of charge, to any person obtaining - * a copy of this software and associated documentation files (the - * "Software"), to deal in the Software without restriction, including - * without limitation the rights to use, copy, modify, merge, publish, - * distribute, sublicense, and/or sell copies of the Software, and to - * permit persons to whom the Software is furnished to do so, subject to - * the following conditions: - * - * The above copyright notice and this permission notice shall be - * included in all copies or substantial portions of the Software. - * - * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, - * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF - * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. - * IN NO EVENT SHALL SONY CORPORATION BE LIABLE FOR ANY CLAIM, - * DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR - * OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR - * THE USE OR OTHER DEALINGS IN THE SOFTWARE. - * - * Except as contained in this notice, the name of Sony Corporation - * shall not be used in advertising or otherwise to promote the sale, use - * or other dealings in this Software without prior written authorization - * from Sony Corporation. - */ - -/* - * $SonyRCSfile: Imakefile,v $ - * $SonyRevision: 1.4 $ - * $SonyDate: 1997/01/23 11:20:50 $ - */ - -/* - * Change some make rules. - * Patched by Hidekazu Kuroki(hidekazu@cs.titech.ac.jp) 1996/8/10 - */ - -#include "../../sj3.tmpl" - -TOOL_DIR = ../tool -TOOL_NAME = sj3mkdic - -SRCS = ./visual.dic -OBJS = sj3main.dic -OUTPUT = Moutput - -XCOMM INSTFLAGS = -o $(SJ3OWNER) -g $(SJ3GROUP) -m 444 - -all: $(OBJS) - -$(OBJS): $(SRCS) - $(TOOL_DIR)/$(TOOL_NAME) $(SRCS) $(OBJS) > $(OUTPUT) - -depend:: - -clean:: - $(RM) $(OBJS) $(OUTPUT) - -InstallNamedNonExec(sj3main.dic,sj3main.dic,$(SJ3DICTDIR)) - -install:: - if [ ! -d $(SJ3DICTDIR)/user ]; then \ @@\ - (mkdir $(SJ3DICTDIR)/user; \ @@\ - chown $(SJ3OWNER) $(SJ3DICTDIR)/user; \ @@\ - chgrp $(SJ3GROUP) $(SJ3DICTDIR)/user); fi diff --git a/dict/tool/Imakefile b/dict/tool/Imakefile deleted file mode 100644 index e6c22df..0000000 --- a/dict/tool/Imakefile +++ /dev/null @@ -1,79 +0,0 @@ -/* - * Copyright (c) 1991-1994 Sony Corporation - * - * Permission is hereby granted, free of charge, to any person obtaining - * a copy of this software and associated documentation files (the - * "Software"), to deal in the Software without restriction, including - * without limitation the rights to use, copy, modify, merge, publish, - * distribute, sublicense, and/or sell copies of the Software, and to - * permit persons to whom the Software is furnished to do so, subject to - * the following conditions: - * - * The above copyright notice and this permission notice shall be - * included in all copies or substantial portions of the Software. - * - * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, - * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF - * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. - * IN NO EVENT SHALL SONY CORPORATION BE LIABLE FOR ANY CLAIM, - * DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR - * OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR - * THE USE OR OTHER DEALINGS IN THE SOFTWARE. - * - * Except as contained in this notice, the name of Sony Corporation - * shall not be used in advertising or otherwise to promote the sale, use - * or other dealings in this Software without prior written authorization - * from Sony Corporation. - */ - -/* - * $SonyRCSfile: Imakefile,v $ - * $SonyRevision: 1.4 $ - * $SonyDate: 1997/01/23 11:20:51 $ - */ - -/* - * Change some make rules. - * Patched by Hidekazu Kuroki(hidekazu@cs.titech.ac.jp) 1996/8/10 - */ - -#include "../../sj3.tmpl" - -INCLUDES = -I../include -I../../include - -INSTFLAGS = -o $(SJ3OWNER) -g $(SJ3GROUP) -m 755 - -SRCS = \ - char.c \ - cnvhinsi.c \ - file.c \ - global.c \ - hindo.c \ - knjcvt.c \ - makedict.c \ - makelist.c \ - makeseg.c \ - memory.c \ - offset.c \ - readline.c \ - string.c - -OBJS = \ - char.o \ - cnvhinsi.o \ - file.o \ - global.o \ - hindo.o \ - knjcvt.o \ - makedict.o \ - makelist.o \ - makeseg.o \ - memory.o \ - offset.o \ - readline.o \ - string.o - -AllTarget(sj3mkdic) -NormalProgramTarget(sj3mkdic,$(OBJS),,,) -DependTarget() -InstallProgramWithFlags(sj3mkdic,$(SJ3BINDIR),$(INSTFLAGS)) diff --git a/doc/Imakefile b/doc/Imakefile deleted file mode 100644 index f5d54fb..0000000 --- a/doc/Imakefile +++ /dev/null @@ -1,46 +0,0 @@ -/* - * Copyright (c) 1997 Sony Corporation - * - * Permission is hereby granted, free of charge, to any person obtaining - * a copy of this software and associated documentation files (the - * "Software"), to deal in the Software without restriction, including - * without limitation the rights to use, copy, modify, merge, publish, - * distribute, sublicense, and/or sell copies of the Software, and to - * permit persons to whom the Software is furnished to do so, subject to - * the following conditions: - * - * The above copyright notice and this permission notice shall be - * included in all copies or substantial portions of the Software. - * - * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, - * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF - * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. - * IN NO EVENT SHALL SONY CORPORATION BE LIABLE FOR ANY CLAIM, - * DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR - * OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR - * THE USE OR OTHER DEALINGS IN THE SOFTWARE. - * - * Except as contained in this notice, the name of Sony Corporation - * shall not be used in advertising or otherwise to promote the sale, use - * or other dealings in this Software without prior written authorization - * from Sony Corporation. - */ - -/* - * $SonyRCSfile: Imakefile,v $ - * $SonyRevision: 1.3 $ - * $SonyDate: 1997/01/23 11:20:51 $ - */ - -/* - * Add make rules to install manpages and other documents. - * Patched by Hidekazu Kuroki(hidekazu@cs.titech.ac.jp) 1996/8/10 - */ - -#define IHaveSubdirs -#define PassCDebugFlags 'CDEBUGFLAGS=$(CDEBUGFLAGS)' - -SUBDIRS = doc man - -MakeSubdirs($(SUBDIRS)) -DependSubdirs($(SUBDIRS)) diff --git a/doc/doc/Imakefile b/doc/doc/Imakefile deleted file mode 100644 index 42c2149..0000000 --- a/doc/doc/Imakefile +++ /dev/null @@ -1,49 +0,0 @@ -/* - * Copyright (c) 1997 Sony Corporation - * - * Permission is hereby granted, free of charge, to any person obtaining - * a copy of this software and associated documentation files (the - * "Software"), to deal in the Software without restriction, including - * without limitation the rights to use, copy, modify, merge, publish, - * distribute, sublicense, and/or sell copies of the Software, and to - * permit persons to whom the Software is furnished to do so, subject to - * the following conditions: - * - * The above copyright notice and this permission notice shall be - * included in all copies or substantial portions of the Software. - * - * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, - * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF - * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. - * IN NO EVENT SHALL SONY CORPORATION BE LIABLE FOR ANY CLAIM, - * DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR - * OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR - * THE USE OR OTHER DEALINGS IN THE SOFTWARE. - * - * Except as contained in this notice, the name of Sony Corporation - * shall not be used in advertising or otherwise to promote the sale, use - * or other dealings in this Software without prior written authorization - * from Sony Corporation. - */ - -/* - * $SonyRCSfile: Imakefile,v $ - * $SonyRevision: 1.3 $ - * $SonyDate: 1997/01/23 11:20:51 $ - */ - -#include "../../sj3.tmpl" - -/* - * Add make rules to install other documents. - * Patched by Hidekazu Kuroki(hidekazu@cs.titech.ac.jp) 1996/8/10 - */ - -CONFDIR = $(SJ3CONFDIR) -DOCLIST = Nihongo.ps.Z hinsi.ms makedict.ms sj3lib.ms sj3serv.ms - -all:: - -depend:: - -InstallMultiple($(DOCLIST),$(CONFDIR)) diff --git a/doc/man/Imakefile b/doc/man/Imakefile deleted file mode 100644 index 010e4c0..0000000 --- a/doc/man/Imakefile +++ /dev/null @@ -1,58 +0,0 @@ -/* - * Copyright (c) 1997 Sony Corporation - * - * Permission is hereby granted, free of charge, to any person obtaining - * a copy of this software and associated documentation files (the - * "Software"), to deal in the Software without restriction, including - * without limitation the rights to use, copy, modify, merge, publish, - * distribute, sublicense, and/or sell copies of the Software, and to - * permit persons to whom the Software is furnished to do so, subject to - * the following conditions: - * - * The above copyright notice and this permission notice shall be - * included in all copies or substantial portions of the Software. - * - * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, - * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF - * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. - * IN NO EVENT SHALL SONY CORPORATION BE LIABLE FOR ANY CLAIM, - * DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR - * OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR - * THE USE OR OTHER DEALINGS IN THE SOFTWARE. - * - * Except as contained in this notice, the name of Sony Corporation - * shall not be used in advertising or otherwise to promote the sale, use - * or other dealings in this Software without prior written authorization - * from Sony Corporation. - */ - -/* - * $SonyRCSfile: Imakefile,v $ - * $SonyRevision: 1.3 $ - * $SonyDate: 1997/01/23 11:20:52 $ - */ - -#include "../../sj3.tmpl" - -/* - * Add make rules to install manpages. - * Patched by Hidekazu Kuroki(hidekazu@cs.titech.ac.jp) 1996/8/10 - */ - -#ifndef JapaneseManLocale -#define JapaneseManLocale ja_JP.EUC -#endif -JMANLOCALE = JapaneseManLocale - -#ifndef JapaneseManDir -#define JapaneseManDir $(SJ3TOP)/man/$(JMANLOCALE)/man1 -#endif - -JMANDIR = JapaneseManDir -MANLIST = sj3.1 sj3dic.1 sj3mkdic.1 sj3serv.1 - -all:: - -depend:: - -InstallMultipleFlags($(MANLIST),$(JMANDIR),$(INSTMANFLAGS)) diff --git a/kanakan/Imakefile b/kanakan/Imakefile deleted file mode 100644 index 05434cd..0000000 --- a/kanakan/Imakefile +++ /dev/null @@ -1,172 +0,0 @@ -/* - * Copyright (c) 1991-1994 Sony Corporation - * - * Permission is hereby granted, free of charge, to any person obtaining - * a copy of this software and associated documentation files (the - * "Software"), to deal in the Software without restriction, including - * without limitation the rights to use, copy, modify, merge, publish, - * distribute, sublicense, and/or sell copies of the Software, and to - * permit persons to whom the Software is furnished to do so, subject to - * the following conditions: - * - * The above copyright notice and this permission notice shall be - * included in all copies or substantial portions of the Software. - * - * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, - * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF - * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. - * IN NO EVENT SHALL SONY CORPORATION BE LIABLE FOR ANY CLAIM, - * DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR - * OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR - * THE USE OR OTHER DEALINGS IN THE SOFTWARE. - * - * Except as contained in this notice, the name of Sony Corporation - * shall not be used in advertising or otherwise to promote the sale, use - * or other dealings in this Software without prior written authorization - * from Sony Corporation. - */ - -/* - * $SonyRCSfile: Imakefile,v $ - * $SonyRevision: 1.1 $ - * $SonyDate: 1994/06/03 08:01:25 $ - */ - -INCLUDES = -I../include - -SRCS = \ - adddic.c \ - addelcmn.c \ - alloc.c \ - charsize.c \ - chrtbl.c \ - cl2knj.c \ - clstudy.c \ - cmpstr.c \ - conjunc.c \ - connect.c \ - cvtclknj.c \ - cvtdict.c \ - cvtkanji.c \ - deldic.c \ - depend.c \ - dict.c \ - functbl.c \ - fuzoku.c \ - fzkyomi.c \ - getkanji.c \ - getrank.c \ - global.c \ - hzstrlen.c \ - init.c \ - istrcmp.c \ - memcpy.c \ - memory.c \ - memset.c \ - mk2claus.c \ - mkbunset.c \ - mkjiritu.c \ - mkkouho.c \ - mknumber.c \ - mvmemd.c \ - mvmemi.c \ - peepdic.c \ - ph2knj.c \ - ph_khtbl.c \ - priority.c \ - prtytbl.c \ - s2ctbl.c \ - selclrec.c \ - selsuuji.c \ - setconj.c \ - setjrec.c \ - setkouho.c \ - setubi.c \ - sj2code.c \ - skiphblk.c \ - skipkstr.c \ - srchdict.c \ - srchhead.c \ - srchidx.c \ - srchnum.c \ - sstrcmp.c \ - sstrlen.c \ - sstrncmp.c \ - stbtbl.c \ - stttbl.c \ - study.c \ - suujitbl.c \ - terminat.c \ - termtbl.c \ - wakachi.c - -OBJS = \ - adddic.o \ - addelcmn.o \ - alloc.o \ - charsize.o \ - chrtbl.o \ - cl2knj.o \ - clstudy.o \ - cmpstr.o \ - conjunc.o \ - connect.o \ - cvtclknj.o \ - cvtdict.o \ - cvtkanji.o \ - deldic.o \ - depend.o \ - dict.o \ - functbl.o \ - fuzoku.o \ - fzkyomi.o \ - getkanji.o \ - getrank.o \ - global.o \ - hzstrlen.o \ - init.o \ - istrcmp.o \ - memcpy.o \ - memory.o \ - memset.o \ - mk2claus.o \ - mkbunset.o \ - mkjiritu.o \ - mkkouho.o \ - mknumber.o \ - mvmemd.o \ - mvmemi.o \ - peepdic.o \ - ph2knj.o \ - ph_khtbl.o \ - priority.o \ - prtytbl.o \ - s2ctbl.o \ - selclrec.o \ - selsuuji.o \ - setconj.o \ - setjrec.o \ - setkouho.o \ - setubi.o \ - sj2code.o \ - skiphblk.o \ - skipkstr.o \ - srchdict.o \ - srchhead.o \ - srchidx.o \ - srchnum.o \ - sstrcmp.o \ - sstrlen.o \ - sstrncmp.o \ - stbtbl.o \ - stttbl.o \ - study.o \ - suujitbl.o \ - terminat.o \ - termtbl.o \ - wakachi.o - -NormalLibraryObjectRule() -NormalLibraryTarget(kanakan,$(OBJS)) -DependTarget() - diff --git a/server/Imakefile b/server/Imakefile deleted file mode 100644 index 0f839f6..0000000 --- a/server/Imakefile +++ /dev/null @@ -1,84 +0,0 @@ -/* - * Copyright (c) 1991-1994 Sony Corporation - * - * Permission is hereby granted, free of charge, to any person obtaining - * a copy of this software and associated documentation files (the - * "Software"), to deal in the Software without restriction, including - * without limitation the rights to use, copy, modify, merge, publish, - * distribute, sublicense, and/or sell copies of the Software, and to - * permit persons to whom the Software is furnished to do so, subject to - * the following conditions: - * - * The above copyright notice and this permission notice shall be - * included in all copies or substantial portions of the Software. - * - * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, - * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF - * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. - * IN NO EVENT SHALL SONY CORPORATION BE LIABLE FOR ANY CLAIM, - * DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR - * OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR - * THE USE OR OTHER DEALINGS IN THE SOFTWARE. - * - * Except as contained in this notice, the name of Sony Corporation - * shall not be used in advertising or otherwise to promote the sale, use - * or other dealings in this Software without prior written authorization - * from Sony Corporation. - */ - -/* - * $SonyRCSfile: Imakefile,v $ - * $SonyRevision: 1.3 $ - * $SonyDate: 1997/01/23 11:20:53 $ - */ - -/* - * Change some make rules. - * Patched by Hidekazu Kuroki(hidekazu@cs.titech.ac.jp) 1996/8/10 - */ - -#include "../sj3.tmpl" - -CONFFILE = $(SJ3CONFDIR)/serverrc -RKDIR = ../sj3lib - -INCLUDES = -I../include -#if SystemV4 || SystemV -#if HasSockets -EXTRA_LIBRARIES = -lnsl -#endif -#endif -DEFINES = $(ARCDEFS) $(SYSDEFS) $(USETLI) - -CONVLIB = ../kanakan/libkanakan.a -DEPLIBS = $(CONVLIB) -LOCAL_LIBRARIES = $(CONVLIB) -INSTFLAGS = -o $(SJ3OWNER) -g $(SJ3GROUP) -m 4755 -XCOMM INSTFLAGS2 = -o $(SJ3OWNER) -g $(SJ3GROUP) -m 444 - -#MKDIRHIER = ../util/mkdirh/mkdirh - -SRCS = comuni.c \ - error.c \ - execute.c \ - main.c \ - setup.c \ - time_stamp.c \ - version.c \ - ../sj3lib/string.c - -OBJS = comuni.o \ - error.o \ - execute.o \ - main.o \ - setup.o \ - time_stamp.o \ - version.o \ - string.o - -AllTarget(sj3serv) -NormalProgramTarget(sj3serv,$(OBJS),$(DEPLIBS),$(LOCAL_LIBRARIES),) -DependTarget() -LinkSourceFile(string.c,$(RKDIR)) -InstallProgramWithFlags(sj3serv,$(SJ3BINDIR),$(INSTFLAGS)) -InstallNonExecFile(serverrc,$(SJ3CONFDIR)) diff --git a/sj3.tmpl b/sj3.tmpl deleted file mode 100644 index ef4760a..0000000 --- a/sj3.tmpl +++ /dev/null @@ -1,64 +0,0 @@ -/* - * Copyright (c) 1997 Sony Corporation - * - * Permission is hereby granted, free of charge, to any person obtaining - * a copy of this software and associated documentation files (the - * "Software"), to deal in the Software without restriction, including - * without limitation the rights to use, copy, modify, merge, publish, - * distribute, sublicense, and/or sell copies of the Software, and to - * permit persons to whom the Software is furnished to do so, subject to - * the following conditions: - * - * The above copyright notice and this permission notice shall be - * included in all copies or substantial portions of the Software. - * - * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, - * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF - * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. - * IN NO EVENT SHALL SONY CORPORATION BE LIABLE FOR ANY CLAIM, - * DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR - * OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR - * THE USE OR OTHER DEALINGS IN THE SOFTWARE. - * - * Except as contained in this notice, the name of Sony Corporation - * shall not be used in advertising or otherwise to promote the sale, use - * or other dealings in this Software without prior written authorization - * from Sony Corporation. - */ - -/* - * $SonyRCSfile: sj3.tmpl,v $ - * $SonyRevision: 1.1 $ - * $SonyDate: 1997/01/23 11:20:57 $ - */ - -SJ3TOP = /usr/local -SJ3BINDIR = $(SJ3TOP)/bin -SJ3HDRDIR = $(SJ3TOP)/include -SJ3LIBDIR = $(SJ3TOP)/lib -SJ3CONFDIR = $(SJ3TOP)/lib/sj3 -SJ3DICTDIR = $(SJ3CONFDIR)/dict - -/* - * Change for FreeBSD. - * Because When the LANG variable is EUC, setlocale function in library libc - * return NULL, use it in library libxpg4 - * Patched by Hidekazu Kuroki(hidekazu@cs.titech.ac.jp) 1996/8/10 - */ -#if defined(FreeBSDArchitecture) - -CODE_LIBS = -lxpg4 -SJ3OWNER = root -SJ3GROUP = bin - -#else - -SJ3OWNER = root -#if SystemV4 || SystemV -USETLI = -DTLI -SJ3GROUP = bin -#else -SJ3GROUP = staff -#endif - -#endif diff --git a/sj3/Imakefile b/sj3/Imakefile deleted file mode 100644 index 7050bdc..0000000 --- a/sj3/Imakefile +++ /dev/null @@ -1,105 +0,0 @@ -/* - * Copyright (c) 1994 Sony Corporation - * - * Permission is hereby granted, free of charge, to any person obtaining - * a copy of this software and associated documentation files (the - * "Software"), to deal in the Software without restriction, including - * without limitation the rights to use, copy, modify, merge, publish, - * distribute, sublicense, and/or sell copies of the Software, and to - * permit persons to whom the Software is furnished to do so, subject to - * the following conditions: - * - * The above copyright notice and this permission notice shall be - * included in all copies or substantial portions of the Software. - * - * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, - * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF - * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. - * IN NO EVENT SHALL SONY CORPORATION BE LIABLE FOR ANY CLAIM, - * DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR - * OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR - * THE USE OR OTHER DEALINGS IN THE SOFTWARE. - * - * Except as contained in this notice, the name of Sony Corporation - * shall not be used in advertising or otherwise to promote the sale, use - * or other dealings in this Software without prior written authorization - * from Sony Corporation. - */ - -/* - * $SonyRCSfile: Imakefile,v $ - * $SonyRevision: 1.3 $ - * $SonyDate: 1997/01/23 11:20:53 $ - */ - -/* - * Change some make rules. - * Patched by Hidekazu Kuroki(hidekazu@cs.titech.ac.jp) 1996/8/10 - */ - -#include "../sj3.tmpl" - -INCLUDES = -I../sj3h -I../sj3lib -I../include -#if SystemV4 || SystemV -#if defined(SonySysvArchitecture) -CODE_LIBS = -lw16 -ljcode -CCOPTIONS = -Xa -Wf,-XNp9000,-XNd6000 -#else -CCOPTIONS = -Xa -#endif -#if HasSockets -EXTRA_LIBRARIES = -lnsl -#endif -#else -SRC0 = nmttyslot.c -OBJ0 = nmttyslot.o -#endif -DEFINES = $(ARCDEFS) $(SYSDEFS) -DKANJI -DOKB - -SYS_LIBRARIES = -ltermcap $(CODE_LIBS) - -SJ3_LIBDIR = ../sj3lib -RKDIR = ../sj3rkcv -SJLIB = $(SJ3_LIBDIR)/libsj3lib.a -INSTFLAGS = -o $(SJ3OWNER) -g $(SJ3GROUP) -m 4755 -DEPLIBS = $(SJLIB) -LOCAL_LIBRARIES = $(SJLIB) - - -SRC1 = conv.c display.c funckey.c\ - eucmessage.c sj3.c\ - sj3ver.c sjgetchar.c term.c $(SRC0) - -SRC2 = version.c stat_conv.c henkan.c\ - romaji.c code.c\ - etc.c toroku.c edit.c douon.c\ - sjrc.c kigou.c common.c screen.c\ - libif.c - -SRC3 = $(RKDIR)/rk_conv.c \ - $(RKDIR)/sj3_rkcv.c \ - $(RKDIR)/wc16_str.c - -SRC = $(SRC1) $(SRC2) $(SRC3) - -OBJS = sj3ver.o version.o sj3.o\ - funckey.o term.o\ - sjgetchar.o conv.o stat_conv.o henkan.o\ - romaji.o display.o code.o\ - etc.o toroku.o edit.o eucmessage.o douon.o\ - sjrc.o kigou.o common.o screen.o\ - libif.o rk_conv.o sj3_rkcv.o wc16_str.o $(OBJ0) - -AllTarget(sj3) -NormalProgramTarget(sj3,$(OBJS),$(DEPLIBS),$(LOCAL_LIBRARIES),) -DependTarget() -LinkSourceFile(rk_conv.c,$(RKDIR)) -LinkSourceFile(sj3_rkcv.c,$(RKDIR)) -LinkSourceFile(wc16_str.c,$(RKDIR)) -InstallProgramWithFlags(sj3,$(SJ3BINDIR),$(INSTFLAGS)) -InstallNamedNonExec(Sjrc,sjrc,$(SJ3CONFDIR)) -InstallNamedNonExec(Sjrk,sjrk,$(SJ3CONFDIR)) -InstallNamedNonExec(Xterm.cvt,cvtkey.xterm,$(SJ3CONFDIR)) -InstallNamedNonExec(News.cvt,cvtkey.news,$(SJ3CONFDIR)) -InstallNamedNonExec(Nwp511.cvt,cvtkey.nwp511,$(SJ3CONFDIR)) -InstallNamedNonExec(Nwp517.cvt,cvtkey.nwp517,$(SJ3CONFDIR)) diff --git a/sj3dic/Imakefile b/sj3dic/Imakefile deleted file mode 100644 index ba3b511..0000000 --- a/sj3dic/Imakefile +++ /dev/null @@ -1,81 +0,0 @@ -/* - * Copyright (c) 1991-1994 Sony Corporation - * - * Permission is hereby granted, free of charge, to any person obtaining - * a copy of this software and associated documentation files (the - * "Software"), to deal in the Software without restriction, including - * without limitation the rights to use, copy, modify, merge, publish, - * distribute, sublicense, and/or sell copies of the Software, and to - * permit persons to whom the Software is furnished to do so, subject to - * the following conditions: - * - * The above copyright notice and this permission notice shall be - * included in all copies or substantial portions of the Software. - * - * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, - * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF - * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. - * IN NO EVENT SHALL SONY CORPORATION BE LIABLE FOR ANY CLAIM, - * DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR - * OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR - * THE USE OR OTHER DEALINGS IN THE SOFTWARE. - * - * Except as contained in this notice, the name of Sony Corporation - * shall not be used in advertising or otherwise to promote the sale, use - * or other dealings in this Software without prior written authorization - * from Sony Corporation. - */ - -/* - * $SonyRCSfile: Imakefile,v $ - * $SonyRevision: 1.3 $ - * $SonyDate: 1997/01/23 11:20:54 $ - */ - -/* - * Change some make rules. - * Patched by Hidekazu Kuroki(hidekazu@cs.titech.ac.jp) 1996/8/10 - */ - -#include "../sj3.tmpl" - -INCLUDES = -I../include -I../sj3lib -#if SystemV4 || SystemV -#if defined(SonySysvArchitecture) -CODE_LIBS = -ljcode -#endif -#endif - -SYS_LIBRARIES = $(CODE_LIBS) - -LIBDIR = ../sj3lib -SJLIB = $(LIBDIR)/libsj3lib.a - -DEPLIBS = $(SJLIB) -LOCAL_LIBRARIES = $(SJLIB) - -INSTFLAGS = -o $(SJ3OWNER) -g $(SJ3GROUP) -m 755 - -SRCS = codecnv.c \ - dictdisp.c \ - dictmake.c \ - hinsi.c \ - sj3dic.c \ - sj3err.c \ - sjrc.c - - -OBJS = codecnv.o \ - sj3err.o \ - sj3dic.o \ - dictdisp.o \ - dictmake.o \ - hinsi.o \ - sjrc.o - -PROGRAMS = sj3dic - -AllTarget($(PROGRAMS)) -NormalProgramTarget(sj3dic,$(OBJS),$(DEPLIBS),$(LOCAL_LIBRARIES),) -DependTarget() -InstallProgramWithFlags(sj3dic,$(SJ3BINDIR),$(INSTFLAGS)) diff --git a/sj3lib/Imakefile b/sj3lib/Imakefile deleted file mode 100644 index bfd9902..0000000 --- a/sj3lib/Imakefile +++ /dev/null @@ -1,55 +0,0 @@ -/* - * Copyright (c) 1991-1994 Sony Corporation - * - * Permission is hereby granted, free of charge, to any person obtaining - * a copy of this software and associated documentation files (the - * "Software"), to deal in the Software without restriction, including - * without limitation the rights to use, copy, modify, merge, publish, - * distribute, sublicense, and/or sell copies of the Software, and to - * permit persons to whom the Software is furnished to do so, subject to - * the following conditions: - * - * The above copyright notice and this permission notice shall be - * included in all copies or substantial portions of the Software. - * - * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, - * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF - * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. - * IN NO EVENT SHALL SONY CORPORATION BE LIABLE FOR ANY CLAIM, - * DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR - * OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR - * THE USE OR OTHER DEALINGS IN THE SOFTWARE. - * - * Except as contained in this notice, the name of Sony Corporation - * shall not be used in advertising or otherwise to promote the sale, use - * or other dealings in this Software without prior written authorization - * from Sony Corporation. - */ - -/* - * $SonyRCSfile: Imakefile,v $ - * $SonyRevision: 1.3 $ - * $SonyDate: 1997/01/23 11:20:55 $ - */ - -#include "../sj3.tmpl" - -#if SystemV4 || SystemV -DEFINES = $(USETLI) -#endif -INCLUDES = -I../include -I../sj3h -SRCS = \ - level1.c \ - sj.c \ - string.c - -OBJS = \ - level1.o \ - sj.o \ - string.o - -NormalLibraryObjectRule() -NormalLibraryTarget(sj3lib,$(OBJS)) -DependTarget() -InstallLibrary(sj3lib,$(SJ3LIBDIR)) -InstallNonExecFile(sj3lib.h,$(SJ3HDRDIR)) diff --git a/sj3stat/Imakefile b/sj3stat/Imakefile deleted file mode 100644 index 8638b02..0000000 --- a/sj3stat/Imakefile +++ /dev/null @@ -1,61 +0,0 @@ -/* - * Copyright (c) 1995 Sony Corporation - * - * Permission is hereby granted, free of charge, to any person obtaining - * a copy of this software and associated documentation files (the - * "Software"), to deal in the Software without restriction, including - * without limitation the rights to use, copy, modify, merge, publish, - * distribute, sublicense, and/or sell copies of the Software, and to - * permit persons to whom the Software is furnished to do so, subject to - * the following conditions: - * - * The above copyright notice and this permission notice shall be - * included in all copies or substantial portions of the Software. - * - * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, - * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF - * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. - * IN NO EVENT SHALL SONY CORPORATION BE LIABLE FOR ANY CLAIM, - * DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR - * OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR - * THE USE OR OTHER DEALINGS IN THE SOFTWARE. - * - * Except as contained in this notice, the name of Sony Corporation - * shall not be used in advertising or otherwise to promote the sale, use - * or other dealings in this Software without prior written authorization - * from Sony Corporation. - */ - -/* - * $SonyRCSfile: Imakefile,v $ - * $SonyRevision: 1.3 $ - * $SonyDate: 1997/01/23 11:20:55 $ - */ - -/* - * Change some make rules. - * Patched by Hidekazu Kuroki(hidekazu@cs.titech.ac.jp) 1996/8/10 - */ - -#include "../sj3.tmpl" - -INCLUDES = -I../include -I../sj3lib - -LIBDIR = ../sj3lib -SJLIB = $(LIBDIR)/libsj3lib.a - -DEPLIBS = $(SJLIB) -LOCAL_LIBRARIES = $(SJLIB) - -INSTFLAGS = -o $(SJ3OWNER) -g $(SJ3GROUP) -m 755 - -SRCS = sj3stat.c - -OBJS = sj3stat.o - -PROGRAMS = sj3stat - -AllTarget($(PROGRAMS)) -NormalProgramTarget(sj3stat,$(OBJS),$(DEPLIBS),$(LOCAL_LIBRARIES),) -DependTarget() -InstallProgramWithFlags(sj3stat,$(SJ3BINDIR),$(INSTFLAGS))