From 2327cb5eb3ebbbca78701cf4a27ead376d245ffe Mon Sep 17 00:00:00 2001 From: Daniel Mensinger Date: Sun, 22 Aug 2021 17:56:56 +0200 Subject: docs: Fix broken links --- docs/markdown/Generating-sources.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'docs/markdown/Generating-sources.md') diff --git a/docs/markdown/Generating-sources.md b/docs/markdown/Generating-sources.md index c09819f60..3cdfbc459 100644 --- a/docs/markdown/Generating-sources.md +++ b/docs/markdown/Generating-sources.md @@ -8,8 +8,8 @@ Sometimes source files need to be preprocessed before they are passed to the actual compiler. As an example you might want build an IDL compiler and then run some files through that to generate actual source files. In Meson this is done with -[`generator()`](Reference-manual.md#generator) or -[`custom_target()`](Reference-manual.md#custom_target). +[[generator]] or +[[custom_target]]. ## Using custom_target() @@ -120,7 +120,7 @@ idep_foo = declare_dependency( ``` See [dependencies](Dependencies.md#declaring-your-own), and -[reference](Reference-manual.md#declare_dependency) for more +[[declare_dependency]] for more information. ## Using generator() @@ -139,7 +139,7 @@ output will be created in a target-private directory `@BUILD_DIR@`. If you want to generate files for general purposes such as for generating headers to be used by several sources, or data that will be installed, and so on, use a -[`custom_target()`](Reference-manual.md#custom_target) instead. +[[custom_target]] instead. ```meson -- cgit v1.2.3