GNUmakefile: typo

This commit is contained in:
2021-08-29 13:21:25 +02:00
parent e988624f95
commit 8ebb596c9f
2 changed files with 4 additions and 4 deletions

View File

@@ -14,11 +14,11 @@
# 3) add ex.c to exercise source code, and create a suitable main function # 3) add ex.c to exercise source code, and create a suitable main function
# 4) use make with one of the following targets : # 4) use make with one of the following targets :
# all: compile and run all predefined tests. # all: compile and run all predefined tests.
# nowarn: compile with no -Wall and -Wextra, and run all predefined tests # nowarn: compile with no -Werror, and run all predefined tests
# debug: compile with -DDEBUG and run all predefined tests # debug: compile with -DDEBUG and run all predefined tests
# mem: perform memcheck with all tests enabled # mem: perform memcheck with all tests enabled
# unit: build standalone (unit) bimary # unit: build standalone (unit) bimary
# unitnowarn: build standalone (unit) binary with -Wall and -Wextra disabled # unitnowarn: build standalone (unit) binary with -Werror disabled
# unitdebug: build standalone binary with -DDEBUG # unitdebug: build standalone binary with -DDEBUG
# #
# Original 'makefile' targets can be used (test, memcheck, clean, ...) # Original 'makefile' targets can be used (test, memcheck, clean, ...)

View File

@@ -14,11 +14,11 @@
# 3) add ex.c to exercise source code, and create a suitable main function # 3) add ex.c to exercise source code, and create a suitable main function
# 4) use make with one of the following targets : # 4) use make with one of the following targets :
# all: compile and run all predefined tests. # all: compile and run all predefined tests.
# nowarn: compile with no -Wall and -Wextra, and run all predefined tests # nowarn: compile with no -Werror, and run all predefined tests
# debug: compile with -DDEBUG and run all predefined tests # debug: compile with -DDEBUG and run all predefined tests
# mem: perform memcheck with all tests enabled # mem: perform memcheck with all tests enabled
# unit: build standalone (unit) bimary # unit: build standalone (unit) bimary
# unitnowarn: build standalone (unit) binary with -Wall and -Wextra disabled # unitnowarn: build standalone (unit) binary with -Werror disabled
# unitdebug: build standalone binary with -DDEBUG # unitdebug: build standalone binary with -DDEBUG
# #
# Original 'makefile' targets can be used (test, memcheck, clean, ...) # Original 'makefile' targets can be used (test, memcheck, clean, ...)