summaryrefslogtreecommitdiff
path: root/CONTRIBUTING.md
diff options
context:
space:
mode:
authorMichael Sweet <msweet@msweet-imac.local>2016-03-17 15:45:31 -0400
committerMichael Sweet <msweet@msweet-imac.local>2016-03-17 15:45:31 -0400
commit8cd7e4da2bebaef6ba21d66c9a5065b762f30eeb (patch)
treeef89de4e449e2f9cd3e348c211eefbf19337b65a /CONTRIBUTING.md
parentd8ace9c1a616fc0f5316e45e0de83a4f4d055468 (diff)
downloadcups-8cd7e4da2bebaef6ba21d66c9a5065b762f30eeb.tar.gz
Fix markdown for some of the examples...
Diffstat (limited to 'CONTRIBUTING.md')
-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