diff --git a/docs/reference/gio/glib-compile-resources.xml b/docs/reference/gio/glib-compile-resources.xml index f70f8c2ce..5e404a1f9 100644 --- a/docs/reference/gio/glib-compile-resources.xml +++ b/docs/reference/gio/glib-compile-resources.xml @@ -103,13 +103,12 @@ This can be used to track dependencies in the build system. For example, the fol make rule would mark test.gresource as depending on all the files that test.gresource.xm includes, so that is is automatically rebuilt if any of them change: - - test.gresource: test.gresource.xml $(shell $(GLIB_COMPILE_RESOURCES) --generate-dependencies test.gresource.xml) - + +test.gresource: test.gresource.xml $(shell $(GLIB_COMPILE_RESOURCES) --generate-dependencies test.gresource.xml) + Note that this may or may not be portable to non-GNU make. -For example i - +