summaryrefslogtreecommitdiffstats
path: root/documentation/sdk-manual/working-projects.rst
diff options
context:
space:
mode:
authorMichael Opdenacker <michael.opdenacker@bootlin.com>2024-03-30 18:56:12 +0100
committerSteve Sakoman <steve@sakoman.com>2024-04-19 04:50:40 -0700
commit364c5c906e20e8c3a5dc93309281b52ed92dc351 (patch)
treedf56d514ec4c8871de3f6fa4fbb18545696345f9 /documentation/sdk-manual/working-projects.rst
parent9f0fd0ad0ea38742c69d452030b454b9f3373d91 (diff)
downloadpoky-364c5c906e20e8c3a5dc93309281b52ed92dc351.tar.gz
manuals: remove tab characters
As reported by "make sphinx-lint" Tabs are even removed in Makefile examples, as Sphinx turns them to spaces anyway in the generated output. (From yocto-docs rev: fd1423141e7458ba557db465c171b0b4e9063987) Signed-off-by: Michael Opdenacker <michael.opdenacker@bootlin.com> Reviewed-by: Quentin Schulz <quentin.schulz@theobroma-systems.com> Signed-off-by: Steve Sakoman <steve@sakoman.com>
Diffstat (limited to 'documentation/sdk-manual/working-projects.rst')
-rw-r--r--documentation/sdk-manual/working-projects.rst10
1 files changed, 5 insertions, 5 deletions
diff --git a/documentation/sdk-manual/working-projects.rst b/documentation/sdk-manual/working-projects.rst
index 7483d51fa3..296d7d8464 100644
--- a/documentation/sdk-manual/working-projects.rst
+++ b/documentation/sdk-manual/working-projects.rst
@@ -286,14 +286,14 @@ example:
286 # CC=i586-poky-linux-gcc -m32 -march=i586 --sysroot=/opt/poky/2.5/sysroots/i586-poky-linux 286 # CC=i586-poky-linux-gcc -m32 -march=i586 --sysroot=/opt/poky/2.5/sysroots/i586-poky-linux
287 # CC="gcc" 287 # CC="gcc"
288 all: main.o module.o 288 all: main.o module.o
289 ${CC} main.o module.o -o target_bin 289 ${CC} main.o module.o -o target_bin
290 main.o: main.c module.h 290 main.o: main.c module.h
291 ${CC} -I . -c main.c 291 ${CC} -I . -c main.c
292 module.o: module.c 292 module.o: module.c
293 module.h ${CC} -I . -c module.c 293 module.h ${CC} -I . -c module.c
294 clean: 294 clean:
295 rm -rf *.o 295 rm -rf *.o
296 rm target_bin 296 rm target_bin
297 297
2984. *Make the Project:* Use the ``make`` command to create the binary 2984. *Make the Project:* Use the ``make`` command to create the binary
299 output file. Because variables are commented out in the Makefile, the 299 output file. Because variables are commented out in the Makefile, the