タグ

makefileに関するsillowのブックマーク (3)

  • Make と Makefile の説明

    まだ完成途中です back 注意: このページの内容には、おそらく多くの間違いがあります。 リンクされているので残しておきますが、利用には注意してください。(2008年3月、新山) ここではおもに make の使い方 と Makefile の書き方について 説明しています。じつは make の種類にはいろいろあり、ここでは GNU make (gmake というコマンド名のこともある) を 対象にしています (BSD の pmake でも基的な部分は同じですが、 マクロ定義などは違うところもあるので注意してください)。 わかりにくい箇所とか、まちがってる箇所がある場合はメールください。 Contents make はどんなときに使うか Makefile を作る make の実行 Makefile の文法リファレンス 多段 make について (未完成) Makefile の例 (未完成)

  • Makefileのデバッグ - 玲瓏庵

    他人が書いた複雑なMakefileをデバッグするときは次のようにするとシンボルなどのデバッグログが出せて便利。warningはファイル名と行番号も出してくれるぞ。 HOGE = hogege $(info hoge $(HOGE)) $(warning hoge- $(HOGE))出力例: hoge hogege Makefile:6: hoge- hogegehttp://developer.apple.com/documentation/DeveloperTools/gnumake/make_8.html#IDX330より

    Makefileのデバッグ - 玲瓏庵
  • Android Build System

    Objective The primary goals of reworking the build system are (1) to make dependencies work more reliably, so that when files need to rebuilt, they are, and (2) to improve performance of the build system so that unnecessary modules are not rebuilt, and so doing a top-level build when little or nothing needs to be done for a build takes as little time as possible. Principles and Use Cases and Polic

    sillow
    sillow 2010/05/28
    Android.mk ビルド方法
  • 1