From: Michael Sweet Date: Thu, 17 Mar 2016 19:45:31 +0000 (-0400) Subject: Fix markdown for some of the examples... X-Git-Tag: v2.2b1~88 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=8cd7e4da2bebaef6ba21d66c9a5065b762f30eeb;p=thirdparty%2Fcups.git Fix markdown for some of the examples... --- diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index bb5dd410c5..32e36ae1f5 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