About 76 results
Open links in new tab
  1. What do the makefile symbols $@ and $< mean? - Stack Overflow

    30 The Makefile builds the hello executable if any one of main.cpp, hello.cpp, factorial.cpp changed. The smallest possible Makefile to achieve that specification could have been: hello: main.cpp hello.cpp …

  2. What's the difference between := and = in Makefile?

    Feb 2, 2011 · For variable assignment in Make, I see := and = operator. What's the difference between them?

  3. What is ?= in Makefile - Stack Overflow

    Dec 19, 2023 · What is ?= in Makefile Ask Question Asked 11 years, 9 months ago Modified 2 years, 3 months ago

  4. What do $@ and $< in a makefile mean? - Unix & Linux Stack Exchange

    Feb 23, 2014 · I am seeing a makefile and it has the symbols $@ and $&lt; in it. I have never seen them, and Google does not show any results about them. Do you know what these commands do?

  5. What does a percent symbol do in a makefile? - Stack Overflow

    Dec 23, 2016 · A makefile is processed sequentially, line by line. Variable assignments are "internalized", and include statements cause the contents of other files to be inserted literally at that …

  6. What does @: (at symbol colon) mean in a Makefile?

    Dec 22, 2011 · What does the following do in a Makefile? rule: $(deps) @: I can't seem to find this in the make manual.

  7. gnu make - What is the difference between the GNU Makefile variable ...

    0 Since no current answer mentions :::= or why it matters, I wrote a Makefile that demonstrates the expansion-time differences: # You may need to comment out entries not supported by your particular …

  8. What does % symbol in Makefile mean - Unix & Linux Stack Exchange

    What does % symbol in Makefile mean Ask Question Asked 9 years, 1 month ago Modified 4 years, 7 months ago

  9. How can I install and use "make" in Windows? - Stack Overflow

    make is a GNU command, so the only way you can get it on Windows is installing a Windows version like the one provided by GNUWin32. Anyway, there are several options for getting that: Directly …

  10. How to make a SIMPLE C++ Makefile - Stack Overflow

    At this point, our makefile is simply remembering the work that needs doing, but we still had to figure out and type each and every needed command in its entirety. It does not have to be that way: Make is a …