diff options
| -rw-r--r-- | .gitignore | 13 | ||||
| -rw-r--r-- | ChangeLog | 8 | ||||
| -rw-r--r-- | build-aux/.gitignore | 11 | ||||
| -rw-r--r-- | doc/.gitignore | 6 | ||||
| -rw-r--r-- | examples/.gitignore | 8 | ||||
| -rw-r--r-- | m4/.gitignore | 8 | ||||
| -rw-r--r-- | ssh/.gitignore | 9 |
7 files changed, 56 insertions, 7 deletions
@@ -3,14 +3,10 @@ # Backup files *\~ -# Object files and static libraries -*.o -*.lo -*.la -src/.libs - -# Auto-generated Makefile +# Auto-generated files Makefile +Makefile.in +configure # Ignore files produced by the magic snarfer *.x @@ -20,5 +16,8 @@ config.status .deps autom4te.cache +aclocal.m4 +libtool + TAGS tags @@ -1,5 +1,13 @@ 2014-03-22 Artyom Poptsov <poptsov.artyom@gmail.com> + * .gitignore: Move rules related to object files, libraries + etc. to `ssh/.gitignore'. Update. + * ssh/.gitignore: Update. + * build-aux/.gitignore: New file. + * doc/.gitignore: New file. + * examples/.gitignore: New file. + * m4/.gitignore: New file. + * ssh/auth.c (guile_ssh_userauth_pubkey): Don't take a username as an parameter. All callers updated. (guile_ssh_userauth_password): Likewise. diff --git a/build-aux/.gitignore b/build-aux/.gitignore new file mode 100644 index 0000000..a20f140 --- /dev/null +++ b/build-aux/.gitignore @@ -0,0 +1,11 @@ +# -*- shell-script -*- + +config.guess +config.sub +depcomp +install-sh +ltmain.sh +mdate-sh +missing +test-driver +texinfo.tex
\ No newline at end of file diff --git a/doc/.gitignore b/doc/.gitignore new file mode 100644 index 0000000..51814d3 --- /dev/null +++ b/doc/.gitignore @@ -0,0 +1,6 @@ +# -*- shell-script -*- + +# Generated files +guile-ssh.info + +stamp-vti diff --git a/examples/.gitignore b/examples/.gitignore new file mode 100644 index 0000000..7189c35 --- /dev/null +++ b/examples/.gitignore @@ -0,0 +1,8 @@ +# -*- shell-script -*- + +# Ignore automatically generated files: +sssh.scm +ssshd.scm +echo/client.scm +echo/server.scm +Makefile.in diff --git a/m4/.gitignore b/m4/.gitignore new file mode 100644 index 0000000..fdf8751 --- /dev/null +++ b/m4/.gitignore @@ -0,0 +1,8 @@ +# -*- shell-script -*- + +libtool.m4 +ltoptions.m4 +ltsugar.m4 +ltversion.m4 +lt~obsolete.m4 +pkg.m4 diff --git a/ssh/.gitignore b/ssh/.gitignore index a4b43c7..942b537 100644 --- a/ssh/.gitignore +++ b/ssh/.gitignore @@ -2,3 +2,12 @@ # Compiled Scheme files *.go + +# Object files and libraries +.deps +.libs +*.o +*.lo +*.la + + |
