Recovered from cvs revision 2007-05-30 05:34:00

This commit is contained in:
hyung-hwan 2007-06-16 01:01:00 +00:00
parent 4d79c3ce5e
commit 3bdebe9fc9
3 changed files with 4 additions and 48 deletions

View File

@ -1,22 +0,0 @@
SRCS = stx.c memory.c object.c symbol.c class.c array.c \
dict.c misc.c name.c token.c parser.c bootstrp.c \
bytecode.c interp.c
OBJS = stx.obj memory.obj object.obj symbol.obj class.obj array.obj \
dict.obj misc.obj name.obj token.obj parser.obj bootstrp.obj \
bytecode.obj interp.obj
OUT = xpstx.lib
CC = lcc
CFLAGS = -I../.. -A -ansic #-libcdll
LDFLAGS =
LIBS =
all: $(OBJS)
lcclib $(OUT) $(OBJS)
clean:
del $(OBJS) $(OUT) *.obj
.SUFFIXES: .c .obj
.c.obj:
$(CC) $(CFLAGS) -c $<

View File

@ -1,22 +0,0 @@
SRCS = \
stx.c memory.c object.c symbol.c dict.c misc.c context.c
OBJS = $(SRCS:.c=.obj)
OUT = xpstx.lib
TC = \dos\tcc
CC = $(TC)\tcc
CFLAGS = -I..\.. -D_DOS -ml -w
all: $(OBJS)
$(TC)\tlib $(OUT) @&&!
+-$(**: = &^
+-)
!
clean:
del $(OBJS) $(OUT) *.obj
.SUFFIXES: .c .obj
.c.obj:
$(CC) $(CFLAGS) -c $<

View File

@ -24,16 +24,16 @@ return the returned value from #main:withArgv and exits.
AUTHOR(S)
Chung, Hyung-Hwan (bacon@piowave.com) is the sole designer and implementer of stx.
Hyung-Hwan Chung (bacon@abiyo.net) is the sole designer and implementer of stx.
BUG REPORTS
Report bugs to bacon@piowave.com if you find any bugs. but make sure that it is really a bug before you report it.
Report bugs to bacon@abiyo.net if you find any bugs. but make sure that it is really a bug before you report it.
COPYRIGHT
Copyright(c) 2005 bacon@piowave.com
Copyright(c) 2005 bacon@abiyo.net
SEE ALSO
xpkit(7)
ase(7)
-- stack bytecodes --