[PATCH] .gitignore files



---
 .gitignore                    |   31 +++++++++++++++++
 demos/.gitignore              |    7 ++++
 demos/gtk-demo/.gitignore     |    2 +
 docs/reference/gtk/.gitignore |    3 ++
 gdk-pixbuf/.gitignore         |   10 +++++
 gdk/.gitignore                |    8 ++++
 gtk/.gitignore                |   13 +++++++
 gtk/tests/.gitignore          |   10 +++++
 modules/.gitignore            |    1 +
 perf/.gitignore               |    5 +++
 po-properties/.gitignore      |    2 +
 po/.gitignore                 |    2 +
 tests/.gitignore              |   74 +++++++++++++++++++++++++++++++++++++++++
 13 files changed, 168 insertions(+), 0 deletions(-)
 create mode 100644 .gitignore
 create mode 100644 demos/.gitignore
 create mode 100644 demos/gtk-demo/.gitignore
 create mode 100644 docs/reference/gtk/.gitignore
 create mode 100644 gdk-pixbuf/.gitignore
 create mode 100644 gdk/.gitignore
 create mode 100644 gtk/.gitignore
 create mode 100644 gtk/tests/.gitignore
 create mode 100644 modules/.gitignore
 create mode 100644 perf/.gitignore
 create mode 100644 po-properties/.gitignore
 create mode 100644 po/.gitignore
 create mode 100644 tests/.gitignore

diff --git a/.gitignore b/.gitignore
new file mode 100644
index 0000000..58eceb8
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1,31 @@
+*.o
+*.lo
+*.pc
+*.la
+*.gmo
+.*.sw?
+.libs/
+.deps/
+Makefile
+Makefile.in
+/aclocal.m4
+/compile
+/config.guess
+/config.h
+/config.h.in
+/config.h.win32
+/config.log
+/config.lt
+/config.status
+/config.sub
+/configure
+/depcomp
+/gtk-doc.make
+/install-sh
+/libtool
+/ltmain.sh
+/missing
+/mkinstalldirs
+stamp-*
+/README
+/INSTALL
diff --git a/demos/.gitignore b/demos/.gitignore
new file mode 100644
index 0000000..f16c227
--- /dev/null
+++ b/demos/.gitignore
@@ -0,0 +1,7 @@
+/testpixbuf-drawable
+/testanimation
+/testpixbuf-save
+/testpixbuf-scale
+/pixbuf-demo
+/testpixbuf
+/test-inline-pixbufs.h
diff --git a/demos/gtk-demo/.gitignore b/demos/gtk-demo/.gitignore
new file mode 100644
index 0000000..3974967
--- /dev/null
+++ b/demos/gtk-demo/.gitignore
@@ -0,0 +1,2 @@
+/gtk-demo
+/demos.h
diff --git a/docs/reference/gtk/.gitignore b/docs/reference/gtk/.gitignore
new file mode 100644
index 0000000..eee3562
--- /dev/null
+++ b/docs/reference/gtk/.gitignore
@@ -0,0 +1,3 @@
+/tmpl/
+/html/
+*.stamp
diff --git a/gdk-pixbuf/.gitignore b/gdk-pixbuf/.gitignore
new file mode 100644
index 0000000..aa358d5
--- /dev/null
+++ b/gdk-pixbuf/.gitignore
@@ -0,0 +1,10 @@
+/gdk_pixbuf.def
+/gdk-pixbuf-alias.h
+/gdk-pixbuf-aliasdef.c
+/gdk-pixbuf-enum-types.h
+/gdk-pixbuf-enum-types.c
+/gdk-pixbuf-marshal.h
+/gdk-pixbuf-marshal.c
+/gdk-pixbuf.loaders
+/gdk-pixbuf-csource
+/gdk-pixbuf-query-loaders
diff --git a/gdk/.gitignore b/gdk/.gitignore
new file mode 100644
index 0000000..d3fc190
--- /dev/null
+++ b/gdk/.gitignore
@@ -0,0 +1,8 @@
+/gdk.def
+/gdkenumtypes.h
+/gdkenumtypes.c
+/gdkmarshalers.h
+/gdkmarshalers.c
+/gdkalias.h
+/gdkaliasdef.c
+/gdkconfig.h
diff --git a/gtk/.gitignore b/gtk/.gitignore
new file mode 100644
index 0000000..f205d65
--- /dev/null
+++ b/gtk/.gitignore
@@ -0,0 +1,13 @@
+/gtkmarshalers.h
+/gtkmarshalers.c
+/gtkmarshal.h
+/gtkmarshal.c
+/gtkaliasdef.c
+/gtktypebuiltins.h
+/gtktypebuiltins.c
+/gtkalias.h
+/gtkbuiltincache.h
+/xgen-gtfsrc.c
+/gtk.def
+/gtk-query-immodules-2.0
+/gtk-update-icon-cache
diff --git a/gtk/tests/.gitignore b/gtk/tests/.gitignore
new file mode 100644
index 0000000..e876d4d
--- /dev/null
+++ b/gtk/tests/.gitignore
@@ -0,0 +1,10 @@
+/builder
+/defaultvalue
+/floating
+/liststore
+/object
+/recentmanager
+/testing
+/textbuffer
+/treestore
+/treeview-scrolling
diff --git a/modules/.gitignore b/modules/.gitignore
new file mode 100644
index 0000000..90a0799
--- /dev/null
+++ b/modules/.gitignore
@@ -0,0 +1 @@
+/input/gtk.immodules
diff --git a/perf/.gitignore b/perf/.gitignore
new file mode 100644
index 0000000..c04330e
--- /dev/null
+++ b/perf/.gitignore
@@ -0,0 +1,5 @@
+/marshalers.c
+/marshalers.h
+/testperf
+/typebuiltins.c
+/typebuiltins.h
diff --git a/po-properties/.gitignore b/po-properties/.gitignore
new file mode 100644
index 0000000..18ba987
--- /dev/null
+++ b/po-properties/.gitignore
@@ -0,0 +1,2 @@
+/POTFILES
+/gtk20-properties.pot
diff --git a/po/.gitignore b/po/.gitignore
new file mode 100644
index 0000000..1f6828e
--- /dev/null
+++ b/po/.gitignore
@@ -0,0 +1,2 @@
+/POTFILES
+/gtk20.pot
diff --git a/tests/.gitignore b/tests/.gitignore
new file mode 100644
index 0000000..3de1030
--- /dev/null
+++ b/tests/.gitignore
@@ -0,0 +1,74 @@
+/floatingtest
+/buildertest
+/autotestfilechooser
+/autotestkeywords
+/floatingtest
+/buildertest
+/simple
+/print-editor
+/testaccel
+/testassistant
+/testbbox
+/testcairo
+/testcalendar
+/testcombo
+/testcombochange
+/testcellrenderertext
+/testdnd
+/testellipsise
+/testentrycompletion 
+/testfilechooser
+/testfilechooserbutton
+/testframe
+/testgtk
+/testiconview
+/testicontheme
+/testimage
+/testinput
+/testmenus
+/testmenubars
+/testmultidisplay
+/testmultiscreen
+/testnotebookdnd
+/testnouiprint
+/testprint
+/testrgb
+/testrecentchooser 
+/testrecentchoosermenu
+/testrichtext
+/testselection
+/testspinbutton
+/teststatusicon
+/testtext
+/testtextbuffer
+/testtoolbar
+/stresstest-toolbar
+/testtreeedit
+/testtreemodel
+/testtreeview
+/testtreefocus
+/testtreeflow
+/testtreecolumns
+/testtreesort
+/treestoretest
+/testxinerama
+/pixbuf-read
+/pixbuf-lowmem
+/pixbuf-randomly-modified
+/pixbuf-random
+/pixbuf-threads
+/testmerge
+/testactions
+/testgrouping
+/testtooltips
+/testvolumebutton
+/autotestkeywords
+/testclientmessage
+/testentrycompletion
+/testentryicons
+/testmountoperation
+/testrecentchooser
+/testscale
+/testsocket
+/testsocket_child
+/testtreecolumnsizing
-- 
1.6.0.4


--=-I5c2Pkvl4jmy4/ymSm7V--



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]