mirror of
https://git.savannah.gnu.org/git/guile.git
synced 2025-06-11 14:21:10 +02:00
some more work on handlers for gh
This commit is contained in:
parent
0a67c27a79
commit
0fedd45c50
2 changed files with 16 additions and 24 deletions
|
@ -1,4 +1,4 @@
|
|||
# Makefile.in generated automatically by automake 1.1l from Makefile.am
|
||||
# Makefile.in generated automatically by automake 1.1k from Makefile.am
|
||||
|
||||
# Copyright (C) 1994, 1995, 1996 Free Software Foundation, Inc.
|
||||
# This Makefile.in is free software; the Free Software Foundation
|
||||
|
@ -39,10 +39,6 @@ INSTALL_SCRIPT = @INSTALL_SCRIPT@
|
|||
transform = @program_transform_name@
|
||||
FD_SETTER = @FD_SETTER@
|
||||
RANLIB = @RANLIB@
|
||||
INSTALL_SCRIPT = @INSTALL_SCRIPT@
|
||||
PACKAGE = @PACKAGE@
|
||||
VERSION = @VERSION@
|
||||
module = @module@
|
||||
CC = @CC@
|
||||
|
||||
AUTOMAKE_OPTIONS = foreign
|
||||
|
@ -124,6 +120,9 @@ acinclude.m4 aclocal.m4 configure configure.in fd.h.in guile-snarf.in \
|
|||
scmconfig.h.in stamp-h.in
|
||||
|
||||
|
||||
PACKAGE = @PACKAGE@
|
||||
VERSION = @VERSION@
|
||||
|
||||
DISTFILES = $(DIST_COMMON) $(SOURCES) $(HEADERS) \
|
||||
$(TEXINFOS) $(MANS) $(EXTRA_DIST)
|
||||
|
||||
|
@ -152,7 +151,7 @@ default: all
|
|||
|
||||
.SUFFIXES:
|
||||
.SUFFIXES: .c .o .x
|
||||
$(srcdir)/Makefile.in: Makefile.am $(top_srcdir)/configure.in $(ACLOCAL)
|
||||
$(srcdir)/Makefile.in: Makefile.am $(top_srcdir)/configure.in
|
||||
cd $(top_srcdir) && automake --foreign Makefile
|
||||
|
||||
Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status $(BUILT_SOURCES)
|
||||
|
@ -205,14 +204,12 @@ install-libLIBRARIES: $(lib_LIBRARIES)
|
|||
$(mkinstalldirs) $(libdir)
|
||||
list="$(lib_LIBRARIES)"; for p in $$list; do \
|
||||
if test -f $$p; then \
|
||||
echo "$(INSTALL_DATA) $$p $(libdir)/$$p"; \
|
||||
$(INSTALL_DATA) $$p $(libdir)/$$p; \
|
||||
else :; fi; \
|
||||
done
|
||||
$(POST_INSTALL)
|
||||
@list="$(lib_LIBRARIES)"; for p in $$list; do \
|
||||
list="$(lib_LIBRARIES)"; for p in $$list; do \
|
||||
if test -f $$p; then \
|
||||
echo "$(RANLIB) $(libdir)/$$p"; \
|
||||
$(RANLIB) $(libdir)/$$p; \
|
||||
else :; fi; \
|
||||
done
|
||||
|
@ -244,13 +241,12 @@ libguile.a: $(libguile_a_OBJECTS) $(libguile_a_DEPENDENCIES)
|
|||
install-binSCRIPTS: $(bin_SCRIPTS)
|
||||
$(NORMAL_INSTALL)
|
||||
$(mkinstalldirs) $(bindir)
|
||||
@list="$(bin_SCRIPTS)"; for p in $$list; do \
|
||||
list="$(bin_SCRIPTS)"; for p in $$list; do \
|
||||
if test -f $$p; then \
|
||||
echo "$(INSTALL_SCRIPT) $$p $(bindir)/`echo $$p|sed '$(transform)'`"; \
|
||||
$(INSTALL_SCRIPT) $$p $(bindir)/`echo $$p|sed '$(transform)'`; \
|
||||
else if test -f $(srcdir)/$$p; then \
|
||||
echo "$(INSTALL_SCRIPT) $(srcdir)/$$p $(bindir)/`echo $$p|sed '$(transform)'`"; \
|
||||
$(INSTALL_SCRIPT) $(srcdir)/$$p $(bindir)/`echo $$p|sed '$(transform)'`; \
|
||||
$(INSTALL_SCRIPT) $(srcdir)/$$p \
|
||||
$(bindir)/`echo $$p|sed '$(transform)'`; \
|
||||
else :; fi; fi; \
|
||||
done
|
||||
|
||||
|
@ -262,12 +258,10 @@ uninstall-binSCRIPTS:
|
|||
install-modincludeDATA: $(modinclude_DATA)
|
||||
$(NORMAL_INSTALL)
|
||||
$(mkinstalldirs) $(modincludedir)
|
||||
@list="$(modinclude_DATA)"; for p in $$list; do \
|
||||
list="$(modinclude_DATA)"; for p in $$list; do \
|
||||
if test -f $(srcdir)/$$p; then \
|
||||
echo "$(INSTALL_DATA) $(srcdir)/$$p $(modincludedir)/$$p"; \
|
||||
$(INSTALL_DATA) $(srcdir)/$$p $(modincludedir)/$$p; \
|
||||
else if test -f $$p; then \
|
||||
echo "$(INSTALL_DATA) $$p $(modincludedir)/$$p"; \
|
||||
$(INSTALL_DATA) $$p $(modincludedir)/$$p; \
|
||||
fi; fi; \
|
||||
done
|
||||
|
@ -280,8 +274,7 @@ uninstall-modincludeDATA:
|
|||
install-includeHEADERS: $(include_HEADERS)
|
||||
$(NORMAL_INSTALL)
|
||||
$(mkinstalldirs) $(includedir)
|
||||
@list="$(include_HEADERS)"; for p in $$list; do \
|
||||
echo "$(INSTALL_DATA) $(srcdir)/$$p $(includedir)/$$p"; \
|
||||
list="$(include_HEADERS)"; for p in $$list; do \
|
||||
$(INSTALL_DATA) $(srcdir)/$$p $(includedir)/$$p; \
|
||||
done
|
||||
|
||||
|
@ -293,8 +286,7 @@ uninstall-includeHEADERS:
|
|||
install-modincludeHEADERS: $(modinclude_HEADERS)
|
||||
$(NORMAL_INSTALL)
|
||||
$(mkinstalldirs) $(modincludedir)
|
||||
@list="$(modinclude_HEADERS)"; for p in $$list; do \
|
||||
echo "$(INSTALL_DATA) $(srcdir)/$$p $(modincludedir)/$$p"; \
|
||||
list="$(modinclude_HEADERS)"; for p in $$list; do \
|
||||
$(INSTALL_DATA) $(srcdir)/$$p $(modincludedir)/$$p; \
|
||||
done
|
||||
|
||||
|
@ -386,11 +378,11 @@ distclean-depend:
|
|||
maintainer-clean-depend:
|
||||
rm -rf .deps
|
||||
|
||||
.deps/%.P: $(srcdir)/%.c
|
||||
.deps/%.P: $(srcdir)/%@EXT@
|
||||
@echo "Computing dependencies for $<..."
|
||||
@o='o'; \
|
||||
test -n "$o" && o='$$o'; \
|
||||
$(MKDEP) $< | sed "s/^\(.*\)\.o:/\1.$$o \1.l$$o:/" > $@
|
||||
ONLYC test -n "$o" && o='$$o'; \
|
||||
$(@MKDEP@) $< | sed "s/^\(.*\)\.o:/\1.$$o \1.l$$o:/" > $@
|
||||
info:
|
||||
dvi:
|
||||
check: all
|
||||
|
|
2
libguile/aclocal.m4
vendored
2
libguile/aclocal.m4
vendored
|
@ -1,4 +1,4 @@
|
|||
dnl aclocal.m4 generated automatically by aclocal 1.1l
|
||||
dnl aclocal.m4 generated automatically by aclocal 1.1k
|
||||
|
||||
dnl On the NeXT, #including <utime.h> doesn't give you a definition for
|
||||
dnl struct utime, unless you #define _POSIX_SOURCE.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue