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

    154 From Managing Projects with GNU Make, 3rd Edition, p. 16 (it's under GNU Free Documentation License): Automatic variables are set by make after a rule is matched. They provide access to …

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

    672 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: …

  3. gnu make - What's the difference between - Stack Overflow

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

  4. What is the difference between gmake and make? - Stack Overflow

    Aug 2, 2009 · The language accepted by GNU make is a superset of the one supported by the traditional make utility. By using 'gmake' specifically you can use GNU make extensions without …

  5. What do @, - and + do as prefixes to recipe lines in Make?

    270 In the GNU Makefile manual, it mentions these prefixes. If .ONESHELL is provided, then only the first line of the recipe will be checked for the special prefix characters (‘@’, ‘-’, and ‘+’). What do …

  6. gnu make - 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 ...

    Let me refer to GNU Make manual "Setting variables" and "Flavors", and add some comments. Recursively expanded variables The value you specify is installed verbatim; if it contains references …

  8. What is the variable $(MAKE) in a makefile? - Stack Overflow

    Aug 16, 2016 · subsystem: cd subdir && $(MAKE) The value of this variable is the file name with which make was invoked. If this file name was /bin/make, then the recipe executed is cd subdir && …

  9. dynamic - With gnu make, how do you create new source files in the ...

    Dec 2, 2024 · With gnu make 3.82 how can I get the files created dynamically within a makefile added to a dependencies variable so they get included in the compile &amp; link rules? If I start off with the …

  10. makefile - GNU make conditional function $ (if ...) inside a user ...

    I am trying to write a make function to touch/create an empty file and/or set the permissions, user and group, where possible, or warn if not. However, every conditional check within my function se...