diff --git a/ase/stx/makefile.lcc b/ase/stx/makefile.lcc deleted file mode 100644 index 21f10a9b..00000000 --- a/ase/stx/makefile.lcc +++ /dev/null @@ -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 $< diff --git a/ase/stx/makefile.tcc b/ase/stx/makefile.tcc deleted file mode 100644 index 85f31683..00000000 --- a/ase/stx/makefile.tcc +++ /dev/null @@ -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 $< - diff --git a/ase/stx/stx.txt b/ase/stx/stx.txt index c6e373cd..78ed48aa 100644 --- a/ase/stx/stx.txt +++ b/ase/stx/stx.txt @@ -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 --