タグ

関連タグで絞り込む (1)

タグの絞り込みを解除

makefileに関するkosh04のブックマーク (6)

  • Makefile cheatsheet

    Var assignment foo = "bar" bar = $(foo) foo # dynamic (renewing) assignment foo := "boo" # one time assignment, $(bar) now is "boo foo" foo ?= /usr/local # safe assignment, $(foo) and $(bar) still the same bar += world # append, "boo foo world" foo != echo fooo # exec shell command and assign to foo # $(bar) now is "fooo foo world" = expressions are only evaluated when they’re being used. Magic va

    Makefile cheatsheet
  • Makefile Assignments are Turing-Complete

    kosh04
    kosh04 2016/06/17
    Makefileでライフゲーム
  • Makefileを自己文書化する `make2help` | おそらくはそれさえも平凡な日々


    Web便  JS使便 gulp  Go make 使 make 使
  • Dumping Every Makefile Variable

    What if you want to print out every variable defined in a Makefile? In this tip I'm going to show you how and introduce GNU Make's powerful functions. print-%: @echo $* = $($*) But what if you want to print out every variable defined in a Makefile? In this tip I'm going to show you how and introduce GNU Make's powerful functions. Consider the following example Makefile (cunningly named Makefile):

    Dumping Every Makefile Variable
  • makeのくびき - saneyuki_s log


    gulpmake Grunt GruntJShtml5, Apache AntJavaSIerYeoman
    makeのくびき - saneyuki_s log
  • cmdkey/makefile.gcc at master · adoxa/cmdkey

    kosh04
    kosh04 2015/01/30
    64ビット判定など
  • 1