[gnome-shell] [Makefile-st.am] Generate st/st.h



commit da797dff3538d146e015c3f2d12f6a155ee8136d
Author: Colin Walters <walters verbum org>
Date:   Sat Dec 26 11:48:51 2009 -0500

    [Makefile-st.am] Generate st/st.h
    
    All of the st-$foo.h files say to include st.h, but we didn't have
    one.  Therefore, generate it.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=605491

 .gitignore         |    1 +
 src/Makefile-st.am |   12 ++++++++++--
 2 files changed, 11 insertions(+), 2 deletions(-)
---
diff --git a/.gitignore b/.gitignore
index 374d8c6..9eca2b6 100644
--- a/.gitignore
+++ b/.gitignore
@@ -39,6 +39,7 @@ src/gnome-shell
 src/test-recorder
 src/test-recorder.ogg
 src/test-theme
+src/st/st.h
 stamp-h1
 tests/run-test.sh
 xmldocs.make
diff --git a/src/Makefile-st.am b/src/Makefile-st.am
index bf44016..2e6ea13 100644
--- a/src/Makefile-st.am
+++ b/src/Makefile-st.am
@@ -88,17 +88,23 @@ st_source_h =					\
     st/st-subtexture.h				\
     st/st-table.h				\
     st/st-table-child.h				\
-    st/st-table-private.h			\
     st/st-texture-cache.h			\
     st/st-texture-frame.h			\
     st/st-theme.h				\
     st/st-theme-context.h			\
     st/st-theme-node.h				\
-    st/st-theme-private.h			\
     st/st-tooltip.h				\
     st/st-types.h				\
     st/st-widget.h				\
     $(NULL)
+    
+st/st.h: Makefile
+	$(AM_V_GEN) (echo "#define ST_H_INSIDE 1";	\
+	for name in $(st_source_h); do			\
+	  echo "#include <"$$name">";			\
+	done; echo "#undef ST_H_INSIDE") > st/st.h.tmp && mv st/st.h.tmp st/st.h
+
+BUILT_SOURCES += st/st.h
 
 st_source_private_h =				\
     st/st-private.h				\
@@ -143,8 +149,10 @@ noinst_LTLIBRARIES += libst-1.0.la
 libst_1_0_la_LIBADD = $(ST_LIBS)
 libst_1_0_la_SOURCES =				\
     $(st_source_c)				\
+    $(st_source_private_h)			\
     $(st_source_private_c)			\
     $(st_source_h)				\
+    st/st.h					\
     $(st_built_sources)				\
     $(NULL)
 libst_1_0_la_CPPFLAGS = $(st_cflags)



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