mirror of
https://git.savannah.gnu.org/git/guile.git
synced 2025-05-22 12:30:32 +02:00
Beginnings of build integration of lightning and guile
* libguile/lightning/lightning.am: New file. libguile will include this. Contents initially from include/Makefile.am and include/lightning/Makefile.am. * libguile/lightning/include/Makefile.am: * libguile/lightning/include/lightning/Makefile.am: Remove. * libguile/lightning/configure.ac: Remove output of include Makefiles.
This commit is contained in:
parent
8810163627
commit
f0891bed0b
4 changed files with 31 additions and 82 deletions
|
@ -278,6 +278,4 @@ AC_SUBST([LIGHTNING_CFLAGS])
|
||||||
|
|
||||||
AC_OUTPUT([Makefile
|
AC_OUTPUT([Makefile
|
||||||
lightning.pc
|
lightning.pc
|
||||||
include/Makefile
|
|
||||||
include/lightning/Makefile
|
|
||||||
lib/Makefile])
|
lib/Makefile])
|
||||||
|
|
|
@ -1,19 +0,0 @@
|
||||||
#
|
|
||||||
# Copyright 2000, 2001, 2002, 2012-2017 Free Software Foundation, Inc.
|
|
||||||
#
|
|
||||||
# This file is part of GNU lightning.
|
|
||||||
#
|
|
||||||
# GNU lightning is free software; you can redistribute it and/or modify it
|
|
||||||
# under the terms of the GNU Lesser General Public License as published
|
|
||||||
# by the Free Software Foundation; either version 3, or (at your option)
|
|
||||||
# any later version.
|
|
||||||
#
|
|
||||||
# GNU lightning is distributed in the hope that it will be useful, but
|
|
||||||
# WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
|
|
||||||
# or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public
|
|
||||||
# License for more details.
|
|
||||||
#
|
|
||||||
|
|
||||||
include_HEADERS = lightning.h
|
|
||||||
SUBDIRS = \
|
|
||||||
lightning
|
|
|
@ -1,61 +0,0 @@
|
||||||
#
|
|
||||||
# Copyright 2000, 2001, 2002, 2012-2017 Free Software Foundation, Inc.
|
|
||||||
#
|
|
||||||
# This file is part of GNU lightning.
|
|
||||||
#
|
|
||||||
# GNU lightning is free software; you can redistribute it and/or modify it
|
|
||||||
# under the terms of the GNU Lesser General Public License as published
|
|
||||||
# by the Free Software Foundation; either version 3, or (at your option)
|
|
||||||
# any later version.
|
|
||||||
#
|
|
||||||
# GNU lightning is distributed in the hope that it will be useful, but
|
|
||||||
# WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
|
|
||||||
# or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public
|
|
||||||
# License for more details.
|
|
||||||
#
|
|
||||||
|
|
||||||
lightning_includedir = $(includedir)/lightning
|
|
||||||
|
|
||||||
EXTRA_DIST = \
|
|
||||||
jit_private.h
|
|
||||||
|
|
||||||
if cpu_arm
|
|
||||||
lightning_include_HEADERS = \
|
|
||||||
jit_arm.h
|
|
||||||
endif
|
|
||||||
if cpu_mips
|
|
||||||
lightning_include_HEADERS = \
|
|
||||||
jit_mips.h
|
|
||||||
endif
|
|
||||||
if cpu_ppc
|
|
||||||
lightning_include_HEADERS = \
|
|
||||||
jit_ppc.h
|
|
||||||
endif
|
|
||||||
if cpu_sparc
|
|
||||||
lightning_include_HEADERS = \
|
|
||||||
jit_sparc.h
|
|
||||||
endif
|
|
||||||
if cpu_x86
|
|
||||||
lightning_include_HEADERS = \
|
|
||||||
jit_x86.h
|
|
||||||
endif
|
|
||||||
if cpu_ia64
|
|
||||||
lightning_include_HEADERS = \
|
|
||||||
jit_ia64.h
|
|
||||||
endif
|
|
||||||
if cpu_hppa
|
|
||||||
lightning_include_HEADERS = \
|
|
||||||
jit_hppa.h
|
|
||||||
endif
|
|
||||||
if cpu_aarch64
|
|
||||||
lightning_include_HEADERS = \
|
|
||||||
jit_aarch64.h
|
|
||||||
endif
|
|
||||||
if cpu_s390
|
|
||||||
lightning_include_HEADERS = \
|
|
||||||
jit_s390.h
|
|
||||||
endif
|
|
||||||
if cpu_alpha
|
|
||||||
lightning_include_HEADERS = \
|
|
||||||
jit_alpha.h
|
|
||||||
endif
|
|
31
libguile/lightning/lightning.am
Normal file
31
libguile/lightning/lightning.am
Normal file
|
@ -0,0 +1,31 @@
|
||||||
|
#
|
||||||
|
# Copyright 2000, 2001, 2002, 2012-2018 Free Software Foundation, Inc.
|
||||||
|
#
|
||||||
|
# This file is part of GNU lightning.
|
||||||
|
#
|
||||||
|
# GNU lightning is free software; you can redistribute it and/or modify it
|
||||||
|
# under the terms of the GNU Lesser General Public License as published
|
||||||
|
# by the Free Software Foundation; either version 3, or (at your option)
|
||||||
|
# any later version.
|
||||||
|
#
|
||||||
|
# GNU lightning is distributed in the hope that it will be useful, but
|
||||||
|
# WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
|
||||||
|
# or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public
|
||||||
|
# License for more details.
|
||||||
|
#
|
||||||
|
|
||||||
|
lightning = $(top_srcdir)/libguile/lightning
|
||||||
|
|
||||||
|
EXTRA_DIST = \
|
||||||
|
$(lightning)/include/lightning.h \
|
||||||
|
$(lightning)/include/lightning/jit_private.h a\
|
||||||
|
$(lightning)/include/lightning/jit_arm.h \
|
||||||
|
$(lightning)/include/lightning/jit_mips.h \
|
||||||
|
$(lightning)/include/lightning/jit_ppc.h \
|
||||||
|
$(lightning)/include/lightning/jit_sparc.h \
|
||||||
|
$(lightning)/include/lightning/jit_x86.h \
|
||||||
|
$(lightning)/include/lightning/jit_ia64.h \
|
||||||
|
$(lightning)/include/lightning/jit_hppa.h \
|
||||||
|
$(lightning)/include/lightning/jit_aarch64.h \
|
||||||
|
$(lightning)/include/lightning/jit_s390.h \
|
||||||
|
$(lightning)/include/lightning/jit_alpha.h
|
Loading…
Add table
Add a link
Reference in a new issue