Remove imake-related files
Signed-off-by: Masanori Ogino <mogino@acm.org>
This commit is contained in:
parent
651304b2f4
commit
23f5248103
15 changed files with 0 additions and 1089 deletions
64
Imakefile
64
Imakefile
|
|
@ -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
|
||||
|
||||
|
|
@ -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))
|
||||
|
||||
|
||||
|
||||
|
||||
|
|
@ -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))
|
||||
|
|
@ -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
|
||||
|
|
@ -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))
|
||||
|
|
@ -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))
|
||||
|
|
@ -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))
|
||||
|
|
@ -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))
|
||||
|
|
@ -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()
|
||||
|
||||
|
|
@ -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))
|
||||
64
sj3.tmpl
64
sj3.tmpl
|
|
@ -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
|
||||
105
sj3/Imakefile
105
sj3/Imakefile
|
|
@ -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))
|
||||
|
|
@ -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))
|
||||
|
|
@ -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))
|
||||
|
|
@ -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))
|
||||
Loading…
Add table
Add a link
Reference in a new issue