From d7c9d78474caa831bd43da2438e177a6aaacadf4 Mon Sep 17 00:00:00 2001 From: hyung-hwan Date: Sat, 22 Mar 2008 07:02:20 +0000 Subject: [PATCH] --- ase/awk/descrip.mms | 4 +--- ase/cmd/awk/descrip.mms | 2 +- ase/cmn/descrip.mms | 2 +- ase/cmn/rex.c | 3 ++- ase/utl/descrip.mms | 3 ++- 5 files changed, 7 insertions(+), 7 deletions(-) diff --git a/ase/awk/descrip.mms b/ase/awk/descrip.mms index a5c13001..d0646b1a 100644 --- a/ase/awk/descrip.mms +++ b/ase/awk/descrip.mms @@ -2,7 +2,7 @@ # OpenVMS MMS/MMK # -objects = awk.obj,err.obj,tree.obj,str.obj,tab.obj,map.obj,parse.obj,run.obj,rec.obj,val.obj,func.obj,misc.obj,extio.obj +objects = awk.obj,err.obj,tree.obj,tab.obj,parse.obj,run.obj,rec.obj,val.obj,func.obj,misc.obj,extio.obj CFLAGS = /include="../.." #CFLAGS = /pointer_size=long /include="../.." @@ -15,9 +15,7 @@ aseawk.olb : $(objects) awk.obj depends_on awk.c err.obj depends_on err.c tree.obj depends_on tree.c -str.obj depends_on str.c tab.obj depends_on tab.c -map.obj depends_on map.c parse.obj depends_on parse.c run.obj depends_on run.c rec.obj depends_on rec.c diff --git a/ase/cmd/awk/descrip.mms b/ase/cmd/awk/descrip.mms index 3c7337f9..e8da0186 100644 --- a/ase/cmd/awk/descrip.mms +++ b/ase/cmd/awk/descrip.mms @@ -8,6 +8,6 @@ CFLAGS = /include="../../.." #CFLAGS = /pointer_size=long /include="../../.." aseawk.exe : $(objects) - link /executable=aseawk.exe $(objects),[-.-.awk]aseawk/library,[-.-.utl]aseutl/library + link /executable=aseawk.exe $(objects),[-.-.awk]aseawk/library,[-.-.utl]aseutl/library,[-.-.cmn]asecmn/library awk.obj depends_on awk.c diff --git a/ase/cmn/descrip.mms b/ase/cmn/descrip.mms index e71e3219..b604f4ff 100644 --- a/ase/cmn/descrip.mms +++ b/ase/cmn/descrip.mms @@ -2,7 +2,7 @@ # OpenVMS MMS/MMK # -objects = mem.obj,str.obj,map.obj,rex.obj,misc.obj +objects = mem.obj,str_bas.obj,str_cnv.obj,str_dyn.obj,map.obj,rex.obj,misc.obj CFLAGS = /include="../.." #CFLAGS = /pointer_size=long /include="../.." diff --git a/ase/cmn/rex.c b/ase/cmn/rex.c index efd465e4..8d7f6b06 100644 --- a/ase/cmn/rex.c +++ b/ase/cmn/rex.c @@ -1,10 +1,11 @@ /* - * $Id: rex.c 116 2008-03-03 11:15:37Z baconevi $ + * $Id: rex.c 154 2008-03-21 13:02:20Z baconevi $ * * {License} */ #include +#include #ifdef DEBUG_REX #include diff --git a/ase/utl/descrip.mms b/ase/utl/descrip.mms index 88875909..67ceced0 100644 --- a/ase/utl/descrip.mms +++ b/ase/utl/descrip.mms @@ -2,7 +2,7 @@ # OpenVMS MMS/MMK # -objects = main.obj,ctype.obj,stdio.obj,http.obj +objects = main.obj,ctype.obj,stdio.obj,http.obj,getopt.obj CFLAGS = /include="../.." #CFLAGS = /pointer_size=long /include="../.." @@ -15,3 +15,4 @@ main.obj depends_on main.c ctype.obj depends_on ctype.c stdio.obj depends_on stdio.c http.obj depends_on http.c +getopt.obj depends_on getopt.c