diff options
author | Havoc Pennington <hp@src.gnome.org> | 2000-10-09 17:23:03 +0000 |
---|---|---|
committer | Havoc Pennington <hp@src.gnome.org> | 2000-10-09 17:23:03 +0000 |
commit | ea708d50f289d7c1494c557596e8dd28b916187e (patch) | |
tree | 9395e8b9817d30680a002ea0d51d6ed3e30104df /contrib | |
parent | 518f32d97e0e097c10a99d65da8e0e215c796c3a (diff) | |
download | gtk+-ea708d50f289d7c1494c557596e8dd28b916187e.tar.gz |
forgot to cvs add files from last commit
Diffstat (limited to 'contrib')
-rw-r--r-- | contrib/Makefile.am | 8 | ||||
-rw-r--r-- | contrib/gdk-pixbuf-xlib/Makefile.am | 32 |
2 files changed, 40 insertions, 0 deletions
diff --git a/contrib/Makefile.am b/contrib/Makefile.am new file mode 100644 index 0000000000..b834aad9d4 --- /dev/null +++ b/contrib/Makefile.am @@ -0,0 +1,8 @@ + +if USE_X11 +XDIRS=gdk-pixbuf-xlib +else +XDIRS= +endif + +SUBDIRS=$(XDIRS) diff --git a/contrib/gdk-pixbuf-xlib/Makefile.am b/contrib/gdk-pixbuf-xlib/Makefile.am new file mode 100644 index 0000000000..c9f1824a73 --- /dev/null +++ b/contrib/gdk-pixbuf-xlib/Makefile.am @@ -0,0 +1,32 @@ + +lib_LTLIBRARIES=libgdk_pixbuf_xlib-1.3.la + +INCLUDES = -I$(top_srcdir) -I$(top_builddir) \ + -I$(top_srcdir)/gdk-pixbuf \ + -I$(top_srcdir)/contrib \ + $(GLIB_CFLAGS) + +LDADDS = @STRIP_BEGIN@ \ + @x_ldflags@ \ + @x_libs@ \ + @GLIB_LIBS@ \ + -lm \ +@STRIP_END@ + +libgdk_pixbuf_xlib_1_3_la_LDFLAGS = \ + -export-dynamic + +libgdk_pixbuf_xlib_1_3_la_SOURCES = \ + gdk-pixbuf-xlib-private.h \ + gdk-pixbuf-xlib.c \ + gdk-pixbuf-xlib-render.c \ + gdk-pixbuf-xlib-drawable.c \ + gdk-pixbuf-xlibrgb.c + +libgdk_pixbuf_xlibincludedir=$(includedir)/gtk-2.0/gdk-pixbuf-xlib + +libgdk_pixbuf_xlibinclude_HEADERS = \ + gdk-pixbuf-xlib.h \ + gdk-pixbuf-xlibrgb.h + + |