*** empty log message ***
This commit is contained in:
parent
98f668d66f
commit
273adcb58d
6
ase/configure
vendored
6
ase/configure
vendored
@ -1,5 +1,5 @@
|
||||
#! /bin/sh
|
||||
# From configure.ac Revision: 1.41 .
|
||||
# From configure.ac Revision: 1.42 .
|
||||
# Guess values for system-dependent variables and create Makefiles.
|
||||
# Generated by GNU Autoconf 2.57 for xpkit deb-0.1.0.
|
||||
#
|
||||
@ -9799,7 +9799,7 @@ _ACEOF
|
||||
|
||||
fi
|
||||
|
||||
ac_config_files="$ac_config_files Makefile utils/Makefile xp/Makefile xpp/Makefile xp/bas/Makefile xp/net/Makefile xp/utl/Makefile xp/awk/Makefile xp/lisp/Makefile xp/mp/Makefile xp/test/bas/Makefile xp/test/net/Makefile xp/test/utl/Makefile xp/test/awk/Makefile xp/test/lisp/Makefile xpp/bas/Makefile xpp/net/Makefile xpp/sys/Makefile xpp/utl/Makefile xpp/test/bas/Makefile xpp/test/net/Makefile xpp/test/sys/Makefile xpp/test/utl/Makefile"
|
||||
ac_config_files="$ac_config_files Makefile utils/Makefile xp/Makefile xpp/Makefile xp/bas/Makefile xp/net/Makefile xp/utl/Makefile xp/stx/Makefile xp/awk/Makefile xp/lisp/Makefile xp/mp/Makefile xp/test/bas/Makefile xp/test/net/Makefile xp/test/utl/Makefile xp/test/stx/Makefile xp/test/awk/Makefile xp/test/lisp/Makefile xpp/bas/Makefile xpp/net/Makefile xpp/sys/Makefile xpp/utl/Makefile xpp/test/bas/Makefile xpp/test/net/Makefile xpp/test/sys/Makefile xpp/test/utl/Makefile"
|
||||
|
||||
cat >confcache <<\_ACEOF
|
||||
# This file is a shell script that caches the results of configure
|
||||
@ -10331,12 +10331,14 @@ do
|
||||
"xp/bas/Makefile" ) CONFIG_FILES="$CONFIG_FILES xp/bas/Makefile" ;;
|
||||
"xp/net/Makefile" ) CONFIG_FILES="$CONFIG_FILES xp/net/Makefile" ;;
|
||||
"xp/utl/Makefile" ) CONFIG_FILES="$CONFIG_FILES xp/utl/Makefile" ;;
|
||||
"xp/stx/Makefile" ) CONFIG_FILES="$CONFIG_FILES xp/stx/Makefile" ;;
|
||||
"xp/awk/Makefile" ) CONFIG_FILES="$CONFIG_FILES xp/awk/Makefile" ;;
|
||||
"xp/lisp/Makefile" ) CONFIG_FILES="$CONFIG_FILES xp/lisp/Makefile" ;;
|
||||
"xp/mp/Makefile" ) CONFIG_FILES="$CONFIG_FILES xp/mp/Makefile" ;;
|
||||
"xp/test/bas/Makefile" ) CONFIG_FILES="$CONFIG_FILES xp/test/bas/Makefile" ;;
|
||||
"xp/test/net/Makefile" ) CONFIG_FILES="$CONFIG_FILES xp/test/net/Makefile" ;;
|
||||
"xp/test/utl/Makefile" ) CONFIG_FILES="$CONFIG_FILES xp/test/utl/Makefile" ;;
|
||||
"xp/test/stx/Makefile" ) CONFIG_FILES="$CONFIG_FILES xp/test/stx/Makefile" ;;
|
||||
"xp/test/awk/Makefile" ) CONFIG_FILES="$CONFIG_FILES xp/test/awk/Makefile" ;;
|
||||
"xp/test/lisp/Makefile" ) CONFIG_FILES="$CONFIG_FILES xp/test/lisp/Makefile" ;;
|
||||
"xpp/bas/Makefile" ) CONFIG_FILES="$CONFIG_FILES xpp/bas/Makefile" ;;
|
||||
|
@ -1,6 +1,6 @@
|
||||
AC_PREREQ(2.53)
|
||||
AC_INIT([xpkit], [deb-0.1.0])
|
||||
AC_REVISION([$Revision: 1.42 $])
|
||||
AC_REVISION([$Revision: 1.43 $])
|
||||
AC_CONFIG_HEADER([xp/config.h])
|
||||
|
||||
# Checks for programs.
|
||||
@ -73,9 +73,9 @@ fi
|
||||
AC_CONFIG_FILES([
|
||||
Makefile utils/Makefile xp/Makefile xpp/Makefile
|
||||
xp/bas/Makefile xp/net/Makefile xp/utl/Makefile
|
||||
xp/awk/Makefile xp/lisp/Makefile xp/mp/Makefile
|
||||
xp/stx/Makefile xp/awk/Makefile xp/lisp/Makefile xp/mp/Makefile
|
||||
xp/test/bas/Makefile xp/test/net/Makefile xp/test/utl/Makefile
|
||||
xp/test/awk/Makefile xp/test/lisp/Makefile
|
||||
xp/test/stx/Makefile xp/test/awk/Makefile xp/test/lisp/Makefile
|
||||
xpp/bas/Makefile xpp/net/Makefile xpp/sys/Makefile xpp/utl/Makefile
|
||||
xpp/test/bas/Makefile xpp/test/net/Makefile
|
||||
xpp/test/sys/Makefile xpp/test/utl/Makefile])
|
||||
|
20
ase/stx/makefile.in
Normal file
20
ase/stx/makefile.in
Normal file
@ -0,0 +1,20 @@
|
||||
SRCS = stx.c memory.c object.c
|
||||
OBJS = $(SRCS:.c=.o)
|
||||
OUT = libxpstx.a
|
||||
|
||||
CC = @CC@
|
||||
RANLIB = @RANLIB@
|
||||
CFLAGS = @CFLAGS@ -I@abs_top_builddir@
|
||||
LDFLAGS = @LDFLAGS@
|
||||
LIBS = @LIBS@
|
||||
|
||||
all: $(OBJS)
|
||||
ar cr $(OUT) $(OBJS)
|
||||
ranlib $(OUT)
|
||||
|
||||
clean:
|
||||
rm -rf $(OBJS) $(OUT) *.o
|
||||
|
||||
.SUFFIXES: .c .o
|
||||
.c.o:
|
||||
$(CC) $(CFLAGS) -c $<
|
16
ase/test/stx/makefile.in
Normal file
16
ase/test/stx/makefile.in
Normal file
@ -0,0 +1,16 @@
|
||||
SRCS = stx.c
|
||||
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@ -lxpstx -lxpbas
|
||||
|
||||
all: $(OUTS)
|
||||
|
||||
clean:
|
||||
rm -rf $(OUTS) *.o
|
||||
|
||||
.SUFFIXES: .c .x
|
||||
.c.x:
|
||||
$(CC) $(CFLAGS) $(LDFLAGS) -o $@ $< $(LIBS)
|
@ -15,6 +15,10 @@ int xp_main ()
|
||||
stx.true = xp_stx_memory_alloc(&stx.memory, 0);
|
||||
stx.false = xp_stx_memory_alloc(&stx.memory, 0);
|
||||
|
||||
xp_printf (XP_TEXT("stx.nil %d\n"), stx.nil);
|
||||
xp_printf (XP_TEXT("stx.true %d\n"), stx.true);
|
||||
xp_printf (XP_TEXT("stx.false %d\n"), stx.false);
|
||||
|
||||
for (i = 0; i < 20; i++) {
|
||||
xp_printf (XP_TEXT("%d, %d\n"),
|
||||
i, xp_stx_memory_alloc(&stx.memory, 100));
|
||||
|
Loading…
Reference in New Issue
Block a user