This commit is contained in:
hyung-hwan 2008-03-22 07:02:20 +00:00
parent b6076d81ff
commit d7c9d78474
5 changed files with 7 additions and 7 deletions

View File

@ -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

View File

@ -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

View File

@ -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="../.."

View File

@ -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 <ase/cmn/rex.h>
#include <ase/cmn/mem.h>
#ifdef DEBUG_REX
#include <ase/utl/stdio.h>

View File

@ -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