*** empty log message ***

This commit is contained in:
2005-09-19 03:05:37 +00:00
parent eea3aa9643
commit 38bc69f7cd
7 changed files with 26 additions and 16 deletions

View File

@ -155,7 +155,9 @@ int xp_main (int argc, xp_char_t* argv[])
xp_lsp_attach_output (lsp, put_output, XP_NULL);
for (;;) {
xp_printf (XP_TEXT("%s> "), argv[0]);
xp_sio_puts (xp_sio_out, argv[0]);
xp_sio_puts (xp_sio_out, XP_TEXT("> "));
xp_sio_flush (xp_sio_out);
obj = xp_lsp_read (lsp);
if (obj == XP_NULL) {

View File

@ -3,8 +3,8 @@ OUTS = $(SRCS:.c=.x)
CC = @CC@
CFLAGS = @CFLAGS@ -I@abs_top_builddir@
LDFLAGS = @LDFLAGS@ -L@abs_top_builddir@/xp/bas -L@abs_top_builddir@/xp/lisp
LIBS = @LIBS@ -lxpbas -lxplisp
LDFLAGS = @LDFLAGS@ -L@abs_top_builddir@/xp/bas -L@abs_top_builddir@/xp/lsp
LIBS = @LIBS@ -lxpbas -lxplsp
all: $(OUTS)