diff options
author | Johan Dahlin <johan@gnome.org> | 2009-12-09 16:47:00 -0200 |
---|---|---|
committer | Johan Dahlin <johan@gnome.org> | 2009-12-16 17:22:01 -0200 |
commit | 80c7937d6037f412fe6349139d75da279c7fa75f (patch) | |
tree | 22784ca75907c507c0b7c0889854f10d812d0c09 /gdk/Makefile.am | |
parent | 945689548d1055a850c1ad2b10de71edfafcc2a3 (diff) | |
download | gtk+-80c7937d6037f412fe6349139d75da279c7fa75f.tar.gz |
Separate private from public gdk headers
We don't want to parse the private gdk headers when
creating the GIR.
Diffstat (limited to 'gdk/Makefile.am')
-rw-r--r-- | gdk/Makefile.am | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/gdk/Makefile.am b/gdk/Makefile.am index ec1f2c4512..37a5b8fab2 100644 --- a/gdk/Makefile.am +++ b/gdk/Makefile.am @@ -102,6 +102,11 @@ gdk_built_public_sources = \ gdk_built_private_headers = \ gdkalias.h +gdk_private_headers = \ + gdkinternals.h \ + gdkpoly-generic.h \ + gdkregion-generic.h + gdk_c_sources = \ $(medialib_sources) \ gdk.c \ @@ -118,8 +123,6 @@ gdk_c_sources = \ gdkgc.c \ gdkglobals.c \ gdkimage.c \ - gdkinternals.h \ - gdkintl.h \ gdkkeys.c \ gdkkeyuni.c \ gdkoffscreenwindow.c \ @@ -127,11 +130,9 @@ gdk_c_sources = \ gdkpixbuf-drawable.c \ gdkpixbuf-render.c \ gdkpixmap.c \ - gdkpoly-generic.h \ gdkpolyreg-generic.c \ gdkrectangle.c \ gdkregion-generic.c \ - gdkregion-generic.h \ gdkrgb.c \ gdkscreen.c \ gdkselection.c \ @@ -155,7 +156,8 @@ gdkincludedir = $(includedir)/gtk-2.0/gdk gdkinclude_HEADERS = $(gdk_public_h_sources) $(gdk_built_public_sources) common_sources = \ - $(gdk_c_sources) \ + $(gdk_private_headers) \ + $(gdk_c_sources) \ gdkenumtypes.c \ gdkmarshalers.c \ gdkmarshalers.h |