summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--CONTRIBUTING.md20
1 files changed, 6 insertions, 14 deletions
diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md
index bb5dd410c..32e36ae1f 100644
--- a/CONTRIBUTING.md
+++ b/CONTRIBUTING.md
@@ -409,27 +409,22 @@ is a list of assumptions we follow when constructing makefiles:
the target, e.g.:
target:
-
- _TAB_ target commands
+ TAB target commands
- Dependencies; we assume that the make program supports recursive dependencies
on targets, e.g.:
target: foo bar
-
- _TAB_ target commands
+ TAB target commands
foo: bla
-
- _TAB_ foo commands
+ TAB foo commands
bar:
-
- _TAB_ bar commands
+ TAB bar commands
bla:
-
- _TAB_ bla commands
+ TAB bla commands
- Variable Definition; we assume that the make program supports variable
definition on the command-line or in the makefile using the following form:
@@ -452,16 +447,13 @@ is a list of assumptions we follow when constructing makefiles:
assumed dependencies, e.g.:
.SUFFIXES: .c .o
-
.c.o:
-
- _TAB_ $(CC) $(CFLAGS) -o $@ -c $<
+ TAB $(CC) $(CFLAGS) -o $@ -c $<
- Include Files; we assume that the make program supports the include
directive, e.g.:
include ../Makedefs
-
include Dependencies
- Comments; we assume that comments begin with a # character and proceed to the