*** empty log message ***

This commit is contained in:
hyung-hwan 2005-02-05 05:03:05 +00:00
parent a4ab9b9de8
commit fd9839e424
3 changed files with 26 additions and 2 deletions

View File

@ -1,6 +1,6 @@
AC_PREREQ(2.53) AC_PREREQ(2.53)
AC_INIT([xpkit], [deb-0.1.0]) AC_INIT([xpkit], [deb-0.1.0])
AC_REVISION([$Revision: 1.13 $]) AC_REVISION([$Revision: 1.14 $])
AC_CONFIG_HEADER([xp/config.h]) AC_CONFIG_HEADER([xp/config.h])
# Checks for programs. # Checks for programs.
@ -35,5 +35,6 @@ AC_CHECK_FILE([/NextDeveloper],[AC_DEFINE([_POSIX_SOURCE],[],[_POSIX_SOURCE])])
AC_CONFIG_FILES([ AC_CONFIG_FILES([
Makefile build/Makefile xp/Makefile Makefile build/Makefile xp/Makefile
xp/c/Makefile xp/lisp/Makefile xp/test/c/Makefile]) xp/c/Makefile xp/lisp/Makefile
xp/test/c/Makefile xp/test/lisp/Makefile])
AC_OUTPUT AC_OUTPUT

7
ase/test/lsp/lisp.c Normal file
View File

@ -0,0 +1,7 @@
#include <xp/lisp/lisp.h>
int xp_main ()
{
return 0;
}

16
ase/test/lsp/makefile.in Normal file
View File

@ -0,0 +1,16 @@
SRCS = lisp.c
OUTS = $(SRCS:.c=.x)
CC = @CC@
CFLAGS = @CFLAGS@ -I@abs_top_builddir@
LDFLAGS = @LDFLAGS@ -L@abs_top_builddir@/xp/c
LIBS = @LIBS@ -lxpc
all: $(OUTS)
clean:
rm -rf $(OUTS) *.o
.SUFFIXES: .c .x
.c.x:
$(CC) $(CFLAGS) $(LDFLAGS) -o $@ $< $(LIBS)