mirror of
https://github.com/adambard/learnxinyminutes-docs.git
synced 2025-04-26 23:23:55 +00:00
Fix for wrong/mixed parenthesis usage.
This commit is contained in:
parent
3e52b2e2c4
commit
96436a33de
@ -2,6 +2,7 @@
|
|||||||
language: make
|
language: make
|
||||||
contributors:
|
contributors:
|
||||||
- ["Robert Steed", "https://github.com/robochat"]
|
- ["Robert Steed", "https://github.com/robochat"]
|
||||||
|
- ["Stephan Fuhrmann", "https://github.com/sfuhrm"]
|
||||||
translators:
|
translators:
|
||||||
- ["Martin Schimandl", "https://github.com/Git-Jiro"]
|
- ["Martin Schimandl", "https://github.com/Git-Jiro"]
|
||||||
filename: Makefile-de
|
filename: Makefile-de
|
||||||
@ -58,7 +59,7 @@ file2.txt file3.txt: file0.txt file1.txt
|
|||||||
touch file3.txt
|
touch file3.txt
|
||||||
|
|
||||||
# Make wird sich beschweren wenn es mehrere Rezepte für die gleiche Regel gibt.
|
# 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.
|
# Voraussetzungen hinzuzufügen.
|
||||||
|
|
||||||
#-----------------------------------------------------------------------
|
#-----------------------------------------------------------------------
|
||||||
@ -182,9 +183,9 @@ echo: name2 = Sara # Wahr innerhalb der passenden Regel und auch innerhalb
|
|||||||
# Ein paar Variablen die von Make automatisch definiert werden.
|
# Ein paar Variablen die von Make automatisch definiert werden.
|
||||||
echo_inbuilt:
|
echo_inbuilt:
|
||||||
echo $(CC)
|
echo $(CC)
|
||||||
echo ${CXX)}
|
echo ${CXX}
|
||||||
echo $(FC)
|
echo $(FC)
|
||||||
echo ${CFLAGS)}
|
echo ${CFLAGS}
|
||||||
echo $(CPPFLAGS)
|
echo $(CPPFLAGS)
|
||||||
echo ${CXXFLAGS}
|
echo ${CXXFLAGS}
|
||||||
echo $(LDFLAGS)
|
echo $(LDFLAGS)
|
||||||
|
@ -2,6 +2,7 @@
|
|||||||
language: make
|
language: make
|
||||||
contributors:
|
contributors:
|
||||||
- ["Robert Steed", "https://github.com/robochat"]
|
- ["Robert Steed", "https://github.com/robochat"]
|
||||||
|
- ["Stephan Fuhrmann", "https://github.com/sfuhrm"]
|
||||||
filename: Makefile
|
filename: Makefile
|
||||||
---
|
---
|
||||||
|
|
||||||
@ -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
|
weekend by Stuart Feldman in 1976, it is still widely used (particularly
|
||||||
on Unix and Linux) despite many competitors and criticisms.
|
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.
|
assumes that we are using GNU make which is the standard on Linux.
|
||||||
|
|
||||||
```make
|
```make
|
||||||
@ -168,9 +169,9 @@ echo: name2 = Sara # True within the matching rule
|
|||||||
# Some variables defined automatically by make.
|
# Some variables defined automatically by make.
|
||||||
echo_inbuilt:
|
echo_inbuilt:
|
||||||
echo $(CC)
|
echo $(CC)
|
||||||
echo ${CXX)}
|
echo ${CXX}
|
||||||
echo $(FC)
|
echo $(FC)
|
||||||
echo ${CFLAGS)}
|
echo ${CFLAGS}
|
||||||
echo $(CPPFLAGS)
|
echo $(CPPFLAGS)
|
||||||
echo ${CXXFLAGS}
|
echo ${CXXFLAGS}
|
||||||
echo $(LDFLAGS)
|
echo $(LDFLAGS)
|
||||||
|
Loading…
Reference in New Issue
Block a user