*** empty log message ***
This commit is contained in:
parent
a4ab9b9de8
commit
fd9839e424
@ -1,6 +1,6 @@
|
||||
AC_PREREQ(2.53)
|
||||
AC_INIT([xpkit], [deb-0.1.0])
|
||||
AC_REVISION([$Revision: 1.13 $])
|
||||
AC_REVISION([$Revision: 1.14 $])
|
||||
AC_CONFIG_HEADER([xp/config.h])
|
||||
|
||||
# Checks for programs.
|
||||
@ -35,5 +35,6 @@ AC_CHECK_FILE([/NextDeveloper],[AC_DEFINE([_POSIX_SOURCE],[],[_POSIX_SOURCE])])
|
||||
|
||||
AC_CONFIG_FILES([
|
||||
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
|
||||
|
7
ase/test/lsp/lisp.c
Normal file
7
ase/test/lsp/lisp.c
Normal file
@ -0,0 +1,7 @@
|
||||
#include <xp/lisp/lisp.h>
|
||||
|
||||
int xp_main ()
|
||||
{
|
||||
|
||||
return 0;
|
||||
}
|
16
ase/test/lsp/makefile.in
Normal file
16
ase/test/lsp/makefile.in
Normal 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)
|
Loading…
Reference in New Issue
Block a user