diff --git a/ase/awk/Makefile.bcc b/ase/awk/Makefile.bcc index a23bf9cf..c3d7e9cf 100644 --- a/ase/awk/Makefile.bcc +++ b/ase/awk/Makefile.bcc @@ -1,7 +1,7 @@ SRCS = stx.c memory.c object.c symbol.c class.c dict.c misc.c array.c \ name.c token.c parser.c bootstrp.c bytecode.c interp.c OBJS = $(SRCS:.c=.obj) -OUT = xpstx.lib +OUT = xpawk.lib CC = bcc32 CFLAGS = -O2 -WM -w -w-inl -w-sig -w-spa -w-hid -RT- -I../.. diff --git a/ase/awk/Makefile.cl b/ase/awk/Makefile.cl index 6f6b7511..c9dcdfb6 100644 --- a/ase/awk/Makefile.cl +++ b/ase/awk/Makefile.cl @@ -3,7 +3,7 @@ SRCS = \ dict.c misc.c name.c token.c parser.c bootstrp.c \ bytecode.c interp.c OBJS = $(SRCS:.c=.obj) -OUT = xpstx.lib +OUT = xpawk.lib CC = cl CFLAGS = /nologo /MT /GX /W3 /GR- /D_WIN32_WINNT=0x0400 -I../.. diff --git a/ase/awk/Makefile.lcc b/ase/awk/Makefile.lcc index 0d1eff6d..1590f104 100644 --- a/ase/awk/Makefile.lcc +++ b/ase/awk/Makefile.lcc @@ -2,7 +2,7 @@ SRCS = stx.c memory.c object.c symbol.c class.c dict.c misc.c array.c \ context.c name.c token.c parser.c bootstrp.c bytecode.c interp.c OBJS = stx.obj memory.obj object.obj symbol.obj class.obj dict.obj misc.obj array.obj \ context.obj name.obj token.obj parser.obj bootstrp.obj bytecode.obj interp.obj -OUT = xpstx.lib +OUT = xpawk.lib CC = lcc CFLAGS = -I../.. -A -ansic -libcdll diff --git a/ase/awk/makefile.in b/ase/awk/makefile.in index db09f6f1..b7cc1f2b 100644 --- a/ase/awk/makefile.in +++ b/ase/awk/makefile.in @@ -3,7 +3,7 @@ SRCS = sce.c # dict.c misc.c context.c name.c token.c parser.c bootstrp.c \ # bytecode.c interp.c OBJS = $(SRCS:.c=.o) -OUT = libxpsce.a +OUT = libxpawk.a CC = @CC@ RANLIB = @RANLIB@