Skip to content

Commit

Permalink
Fix for wrong/mixed parenthesis usage.
Browse files Browse the repository at this point in the history
  • Loading branch information
sfuhrm committed Nov 13, 2017
1 parent 3e52b2e commit 96436a3
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 6 deletions.
7 changes: 4 additions & 3 deletions de-de/make-de.html.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
language: make
contributors:
- ["Robert Steed", "https://github.com/robochat"]
- ["Stephan Fuhrmann", "https://github.com/sfuhrm"]
translators:
- ["Martin Schimandl", "https://github.com/Git-Jiro"]
filename: Makefile-de
Expand Down Expand Up @@ -58,7 +59,7 @@ file2.txt file3.txt: file0.txt file1.txt
touch file3.txt

# Make wird sich beschweren wenn es mehrere Rezepte für die gleiche Regel gibt.
# Leere Rezepte zählen nicht und können dazu verwendet werden weitere
# Leere Rezepte zählen nicht und können dazu verwendet werden weitere
# Voraussetzungen hinzuzufügen.

#-----------------------------------------------------------------------
Expand Down Expand Up @@ -182,9 +183,9 @@ echo: name2 = Sara # Wahr innerhalb der passenden Regel und auch innerhalb
# Ein paar Variablen die von Make automatisch definiert werden.
echo_inbuilt:
echo $(CC)
echo ${CXX)}
echo ${CXX}
echo $(FC)
echo ${CFLAGS)}
echo ${CFLAGS}
echo $(CPPFLAGS)
echo ${CXXFLAGS}
echo $(LDFLAGS)
Expand Down
7 changes: 4 additions & 3 deletions make.html.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
language: make
contributors:
- ["Robert Steed", "https://github.com/robochat"]
- ["Stephan Fuhrmann", "https://github.com/sfuhrm"]
filename: Makefile
---

Expand All @@ -11,7 +12,7 @@ target to the most recent version of the source. Famously written over a
weekend by Stuart Feldman in 1976, it is still widely used (particularly
on Unix and Linux) despite many competitors and criticisms.

There are many varieties of make in existence, however this article
There are many varieties of make in existence, however this article
assumes that we are using GNU make which is the standard on Linux.

```make
Expand Down Expand Up @@ -168,9 +169,9 @@ echo: name2 = Sara # True within the matching rule
# Some variables defined automatically by make.
echo_inbuilt:
echo $(CC)
echo ${CXX)}
echo ${CXX}
echo $(FC)
echo ${CFLAGS)}
echo ${CFLAGS}
echo $(CPPFLAGS)
echo ${CXXFLAGS}
echo $(LDFLAGS)
Expand Down

0 comments on commit 96436a3

Please sign in to comment.