cplusplus
.com
TUTORIALS
REFERENCE
ARTICLES
FORUM
C++
Tutorials
Reference
Articles
Forum
Forum
Beginners
Windows Programming
UNIX/Linux Programming
General C++ Programming
Lounge
Jobs
Forum
UNIX/Linux Programming
makefile: @ preceding command
makefile: @ preceding command
Nov 7, 2010 at 8:15pm UTC
paolopiace
(36)
I was not able to retrieve info about the following.
I have a makefile with this rule:
test: main.cpp
@g++ -lcurl main.cpp -o test.out -g
Question(s):
- What is the '@' symbol preceding g++? (I've never seen it...)
- What does it mean/do?
- Is it a syntax restricted to makefile or is a general syntax for shell commands?
Thanks...
Nov 7, 2010 at 8:23pm UTC
kbw
(9488)
http://www.gnu.org/software/make/manual/make.html#Automatic-Variables
Nov 7, 2010 at 8:28pm UTC
paolopiace
(36)
Actually, I found it here:
http://www.gnu.org/software/make/manual/make.html#Echoing
I don't see how "Automatic-Variables" is the answer to my question.
Last edited on
Nov 7, 2010 at 9:03pm UTC
Topic archived. No new replies allowed.