From e69450077be2e9b4045c21e2ec528e5085ba4820 Mon Sep 17 00:00:00 2001
From: Carl Worth <cworth@cworth.org>
Date: Fri, 27 Feb 2009 13:43:01 -0800
Subject: [PATCH] Add .gitignore files for generated files

There's the usual .o files, libraries, binaries, and build-system
stuff here, but also some generated .h files with names like
standard C library includes.
---
 .gitignore     | 18 ++++++++++++++++++
 lib/.gitignore |  8 ++++++++
 2 files changed, 26 insertions(+)
 create mode 100644 .gitignore
 create mode 100644 lib/.gitignore

diff --git a/.gitignore b/.gitignore
new file mode 100644
index 0000000..f76db97
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1,18 @@
+.deps
+Makefile
+*.o
+config.log
+config.status
+gunzip
+gzexe
+gzip
+zcat
+zcmp
+zdiff
+zegrep
+zfgrep
+zforce
+zgrep
+zless
+zmore
+znew
diff --git a/lib/.gitignore b/lib/.gitignore
new file mode 100644
index 0000000..2ed5198
--- /dev/null
+++ b/lib/.gitignore
@@ -0,0 +1,8 @@
+config.h
+fcntl.h
+libgzip.a
+stamp-h1
+stdlib.h
+time.h
+unistd.h
+sys/stat.h
-- 
2.45.2