diff options
Diffstat (limited to 'documentation/sdk-manual/working-projects.rst')
-rw-r--r-- | documentation/sdk-manual/working-projects.rst | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/documentation/sdk-manual/working-projects.rst b/documentation/sdk-manual/working-projects.rst index b9af33393b..4236bcec24 100644 --- a/documentation/sdk-manual/working-projects.rst +++ b/documentation/sdk-manual/working-projects.rst | |||
@@ -295,12 +295,12 @@ example: | |||
295 | all: main.o module.o | 295 | all: main.o module.o |
296 | ${CC} main.o module.o -o target_bin | 296 | ${CC} main.o module.o -o target_bin |
297 | main.o: main.c module.h | 297 | main.o: main.c module.h |
298 | ${CC} -I . -c main.c | 298 | ${CC} -I . -c main.c |
299 | module.o: module.c module.h | 299 | module.o: module.c module.h |
300 | ${CC} -I . -c module.c | 300 | ${CC} -I . -c module.c |
301 | clean: | 301 | clean: |
302 | rm -rf *.o | 302 | rm -rf *.o |
303 | rm target_bin | 303 | rm target_bin |
304 | 304 | ||
305 | #. *Make the Project:* Use the ``make`` command to create the binary | 305 | #. *Make the Project:* Use the ``make`` command to create the binary |
306 | output file. Because variables are commented out in the Makefile, the | 306 | output file. Because variables are commented out in the Makefile, the |