.\"O .TH MAKE 1 "28 February 2016" "GNU" "User Commands" .TH MAKE 1 2016/02/28 GNU ユーザーコマンド .\"O ---------------------------------------- .\"O .SH NAME .\"O make \- GNU make utility to maintain groups of programs .SH 名前 make \- プログラム群を管理するための GNU make ユーティリティ .\"O ---------------------------------------- .\"O .SH SYNOPSIS .\"O .B make .\"O [\fIOPTION\fR]... [\fITARGET\fR]... .SH 書式 \fBmake\fP [\fIOPTION\fP]... [\fITARGET\fP]... .\"O ---------------------------------------- .\"O .SH DESCRIPTION .SH 説明 .\"O ---------------------------------------- .\"O .LP .\"O The .\"O .I make .\"O utility will determine automatically which pieces of a large program need to .\"O be recompiled, and issue the commands to recompile them. The manual describes .\"O the GNU implementation of .\"O .BR make , .\"O which was written by Richard Stallman and Roland McGrath, and is currently .\"O maintained by Paul Smith. Our examples show C programs, since they are very .\"O common, but you can use .\"O .B make .\"O with any programming language whose compiler can be run with a shell command. .\"O In fact, .\"O .B make .\"O is not limited to programs. You can use it to describe any task where some .\"O files must be updated automatically from others whenever the others change. .LP \fImake\fP ユーティリティの目的は、大きなプログラムの中の再コンパイルする必要がある部分を自動的に決定し、再コンパイルのためのコマンドを実行することである。 このマニュアルでは、GNU が実装した \fBmake\fP の説明を行っている。 これは Richard Stallman と Roland McGrath が書いたもので、 現在は Paul Smith により維持されている。 例として C 言語のプログラムを用いているが、これは C 言語が最も一般的だからである。 \fBmake\fP は、シェルコマンドからコンパイラーを起動できるどんなプログラミング言語とでも組み合わせて使用できる。 実際、 \fBmake\fP の利用対象はプログラムだけに限らない。 \fBmake\fP は、 あるファイルを書き換えたら、 その書き換えたファイルを元にして、 別のファイルも自動的に更新しなければならないような任意の作業で利用できる。 .\"O ---------------------------------------- .\"O .LP .\"O To prepare to use .\"O .BR make , .\"O you must write a file called the .\"O .I makefile .\"O that describes the relationships among files in your program, and the states .\"O the commands for updating each file. In a program, typically the executable .\"O file is updated from object files, which are in turn made by compiling source .\"O files. .LP \fBmake\fP を使う準備として、 まず \fImakefile\fP と呼ばれるファイルを書かなければならない。 このファイルは、 プログラムを構成するファイル間の関係と、 各ファイルを更新するためのプログラムを記述したものである。 プログラムに関して言えば、 普通、 実行ファイルはオブジェクトファイルから更新され、 このオブジェクトファイルは、 ソースファイルのコンパイルによって生成される。 .\"O ---------------------------------------- .\"O .LP .\"O Once a suitable makefile exists, each time you change some source files, .\"O this simple shell command: .\"O .sp 1 .LP 適切な makefile さえあれば、 ソースファイルを一部変更するたびに .sp 1 .\"O ---------------------------------------- .\"O .RS .\"O .B make .RS \fBmake\fP .\"O ---------------------------------------- .\"O .RE .\"O .sp 1 .\"O suffices to perform all necessary recompilations. .\"O The .\"O .B make .\"O program uses the makefile description and the last-modification times of the .\"O files to decide which of the files need to be updated. For each of those .\"O files, it issues the commands recorded in the makefile. .RE .sp 1 という簡単なシェルコマンドを実行するだけで、 必要な再コンパイルはすべて行われる。 \fBmake\fP プログラムは、 makefile 記述とファイルの最終更新時刻を用いて、 更新する必要があるファイルを見つける。 そのファイルに対して、 \fImake\fP は makefile に書かれているコマンドを実行する。 .\"O ---------------------------------------- .\"O .LP .\"O .B make .\"O executes commands in the .\"O .I makefile .\"O to update one or more target .\"O .IR names , .\"O where .\"O .I name .\"O is typically a program. .\"O If no .\"O .B \-f .\"O option is present, .\"O .B make .\"O will look for the makefiles .\"O .IR GNUmakefile , .\"O .IR makefile , .\"O and .\"O .IR Makefile , .\"O in that order. .LP \fBmake\fP は \fImakefile\fP 内のコマンドを実行して、 1 つ以上のターゲット \fIname\fP を更新する。 この \fIname\fP は普通はプログラムである。 \fB\-f\fP が無い場合、 \fBmake\fP は makefile として、 \fIGNUmakefile\fP, \fImakefile\fP, \fIMakefile\fP をこの順に参照する。 .\"O ---------------------------------------- .\"O .LP .\"O Normally you should call your makefile either .\"O .I makefile .\"O or .\"O .IR Makefile . .\"O (We recommend .\"O .I Makefile .\"O because it appears prominently near the beginning of a directory .\"O listing, right near other important files such as .\"O .IR README .) .\"O The first name checked, .\"O .IR GNUmakefile , .\"O is not recommended for most makefiles. You should use this name if you have a .\"O makefile that is specific to GNU .\"O .BR make , .\"O and will not be understood by other versions of .\"O .BR make . .\"O If .\"O .I makefile .\"O is '\-', the standard input is read. .LP 通常、ユーザーが makefile として使うべきなのは、 \fImakefile\fP または \fIMakefile\fP である。 (推奨するのは \fIMakefile\fP である。 なぜなら、 この名前であれば、 常にディレクトリ表示の先頭近くに現われ、 \fIREADME\fP のような他の重要ファイルのすぐ近くに来るからである。) 最初にチェックされる名前である \fIGNUmakefile\fP は、たいていの場合は好ましくない。 この名前を使うのは、GNU \fBmake\fP に特化していて、他のバージョンの \fBmake\fP では処理できない makefile を使う場合である。 \fImakefile\fP が `\-' ならば、標準入力が読み込まれる。 .\"O ---------------------------------------- .\"O .LP .\"O .B make .\"O updates a target if it depends on prerequisite files .\"O that have been modified since the target was last modified, .\"O or if the target does not exist. .LP \fBmake\fP がターゲットを更新するのは、ターゲットが依存している必要ファイルがターゲットより後に変更された場合と、ターゲットが存在しない場合である。 .\"O ---------------------------------------- .\"O .SH OPTIONS .\"O .sp 1 .SH オプション .sp 1 .\"O ---------------------------------------- .\"O .TP 0.5i .\"O \fB\-b\fR, \fB\-m\fR .\"O These options are ignored for compatibility with other versions of .\"O .BR make . .TP 0.5i \fB\-b\fP, \fB\-m\fP このオプションは無視される。 これは他のバージョンの \fBmake\fP との互換性のためのものである。 .\"O ---------------------------------------- .\"O .TP 0.5i .\"O \fB\-B\fR, \fB\-\-always\-make\fR .\"O Unconditionally make all targets. .TP 0.5i \fB\-B\fP, \fB\-\-always\-make\fP 無条件にすべてのターゲットを make する。 .\"O ---------------------------------------- .\"O .TP 0.5i .\"O \fB\-C\fR \fIdir\fR, \fB\-\-directory\fR=\fIdir\fR .\"O Change to directory .\"O .I dir .\"O before reading the makefiles or doing anything else. .\"O If multiple .\"O .B \-C .\"O options are specified, each is interpreted relative to the .\"O previous one: .\"O .BR "\-C " / .\"O .BR "\-C " etc .\"O is equivalent to .\"O .BR "\-C " /etc. .\"O This is typically used with recursive invocations of .\"O .BR make . .TP 0.5i \fB\-C\fP \fIdir\fP, \fB\-\-directory\fP=\fIdir\fP makefile を読み込むなどの動作の前に、ディレクトリ \fIdir\fP に移動する。 複数の \fB\-C\fP オプションが指定されている場合、それぞれは、 前の指定に対する相対パスとして解釈される。 たとえば、 \fB\-C \fP/ \fB\-C \fPetc は \fB\-C \fP/etc と同じ意味である。 このオプションは通常 \fBmake\fP を再帰的に呼び出す時に使われる。 .\"O ---------------------------------------- .\"O .TP 0.5i .\"O .B \-d .\"O Print debugging information in addition to normal processing. .\"O The debugging information says which files are being considered for .\"O remaking, which file-times are being compared and with what results, .\"O which files actually need to be remade, which implicit rules are .\"O considered and which are applied---everything interesting about how .\"O .B make .\"O decides what to do. .TP 0.5i \fB\-d\fP 通常の処理情報に加えて、 デバッグ情報を出力する。 デバッグ情報に含まれるのは、再構築の対象となっているファイル、 比較されるファイル時間とその結果、 実際に再構築する必要があるファイル、 候補になっていたり、 実際に適用される暗黙のルールなど、 \fBmake\fP が動作を決めるために必要なものすべてである。 .\"O ---------------------------------------- .\"O .TP 0.5i .\"O .BI \-\-debug "[=FLAGS]" .\"O Print debugging information in addition to normal processing. .\"O If the .\"O .I FLAGS .\"O are omitted, then the behavior is the same as if .\"O .B \-d .\"O was specified. .\"O .I FLAGS .\"O may be .\"O .I a .\"O for all debugging output (same as using .\"O .BR \-d ), .\"O .I b .\"O for basic debugging, .\"O .I v .\"O for more verbose basic debugging, .\"O .I i .\"O for showing implicit rules, .\"O .I j .\"O for details on invocation of commands, and .\"O .I m .\"O for debugging while remaking makefiles. Use .\"O .I n .\"O to disable all previous debugging flags. .TP 0.5i \fB\-\-debug\fP\fI[=FLAGS]\fP 通常の処理内容に加えてデバッグ情報を表示する。 \fIFLAGS\fP が省略された場合、 \fB\-d\fP が指定された場合と同じ動作となる。 \fIFLAGS\fP には次の値を指定することができる。 \fIa\fP は全てのデバッグ情報を出力する (\fB\-d\fP と同じ)。 \fIb\fP は基本的なデバッグ情報を出力する。 \fIv\fP は基本的なデバッグ情報をより詳細に出力する。 \fIi\fP は暗黙のルールを表示する。 \fIj\fP はコマンドの起動の詳細を出力する。 \fIm\fP は makefile の再 make 時にデバッグ情報を出力する。\fIn\fP はそれまでのデバッグフラグをすべて無効化する。 .\"O ---------------------------------------- .\"O .TP 0.5i .\"O \fB\-e\fR, \fB\-\-environment\-overrides\fR .\"O Give variables taken from the environment precedence over variables .\"O from makefiles. .TP 0.5i \fB\-e\fP, \fB\-\-environment\-overrides\fP 環境変数から与える変数を指定する。 これは makefile の変数よりも優先される。 .\"O ---------------------------------------- .\"O .TP 0.5i .\"O \fB\-E\fR \fIstring\fR, \fB\-\-eval\fR \fIstring\fR .\"O Interpret \fIstring\fR using the \fBeval\fR function, before parsing any .\"O makefiles. .TP 0.5i \fB\-E\fP \fIstring\fP, \fB\-\-eval\fP \fIstring\fP \fBeval\fP 関数を用いて \fIstring\fP を解釈する。これはどの makefile の解析よりも先に行われる。 .\"O ---------------------------------------- .\"O .TP 0.5i .\"O \fB\-f\fR \fIfile\fR, \fB\-\-file\fR=\fIfile\fR, \fB\-\-makefile\fR=\fIFILE\fR .\"O Use .\"O .I file .\"O as a makefile. .TP 0.5i \fB\-f\fP \fIfile\fP, \fB\-\-file\fP=\fIfile\fP, \fB\-\-makefile\fP=\fIFILE\fP \fIfile\fP を makefile として使用する。 .\"O ---------------------------------------- .\"O .TP 0.5i .\"O \fB\-i\fR, \fB\-\-ignore\-errors\fR .\"O Ignore all errors in commands executed to remake files. .TP 0.5i \fB\-i\fP, \fB\-\-ignore\-errors\fP ファイルの再構築時に、 実行したコマンドで起きたエラーをすべて無視する。 .\"O ---------------------------------------- .\"O .TP 0.5i .\"O \fB\-I\fR \fIdir\fR, \fB\-\-include\-dir\fR=\fIdir\fR .\"O Specifies a directory .\"O .I dir .\"O to search for included makefiles. .\"O If several .\"O .B \-I .\"O options are used to specify several directories, the directories are .\"O searched in the order specified. .\"O Unlike the arguments to other flags of .\"O .BR make , .\"O directories given with .\"O .B \-I .\"O flags may come directly after the flag: .\"O .BI \-I dir .\"O is allowed, as well as .\"O .B \-I .\"O .IR dir . .\"O This syntax is allowed for compatibility with the C .\"O preprocessor's .\"O .B \-I .\"O flag. .TP 0.5i \fB\-I\fP \fIdir\fP, \fB\-\-include\-dir\fP=\fIdir\fP インクルードする makefile を検索するディレクトリ \fIdir\fP を指定する。 複数の \fB\-I\fP オプションを使って複数のディレクトリを指定した場合、 ディレクトリの検索 は指定した順で行われる。 \fBmake\fP の他のフラグに対する引数と異なり、 \fB\-I\fP に与える引数は、フラグの直後に記述できる。 つまり、 \fB\-I\fP\fIdir\fP という記述も \fB\-I \fP\fIdir\fP と共に許される。 この記法を許すのは、C プリプロセッサの \fB\-I\fP フラグとの互換性のためである。 .\"O ---------------------------------------- .\"O .TP 0.5i .\"O \fB\-j\fR [\fIjobs\fR], \fB\-\-jobs\fR[=\fIjobs\fR] .\"O Specifies the number of .\"O .I jobs .\"O (commands) to run simultaneously. .\"O If there is more than one .\"O .B \-j .\"O option, the last one is effective. .\"O If the .\"O .B \-j .\"O option is given without an argument, .\"O .BR make .\"O will not limit the number of jobs that can run simultaneously. .TP 0.5i \fB\-j\fP [\fIjobs\fP], \fB\-\-jobs\fP[=\fIjobs\fP] 同時に実行できる \fIjobs\fP (コマンド) の数を指定する。 \fB\-j\fP オプションが複数指定された場合は、 最後の指定が有効になる。 引数無しで \fB\-j\fP オプションが与えられた場合、 \fBmake\fP は同時に実行できるジョブの数を制限しない。 .\"O ---------------------------------------- .\"O .TP 0.5i .\"O \fB\-k\fR, \fB\-\-keep\-going\fR .\"O Continue as much as possible after an error. .\"O While the target that failed, and those that depend on it, cannot .\"O be remade, the other dependencies of these targets can be processed .\"O all the same. .TP 0.5i \fB\-k\fP, \fB\-\-keep\-going\fP エラーが起きても、 できる限り実行を継続しようとする。 失敗したターゲットとそのターゲットに依存しているファイルは、 再生成されないものの、そのターゲットに関する他の依存関係は処理することができる。 .\"O ---------------------------------------- .\"O .TP 0.5i .\"O \fB\-l\fR [\fIload\fR], \fB\-\-load\-average\fR[=\fIload\fR] .\"O Specifies that no new jobs (commands) should be started if there are .\"O others jobs running and the load average is at least .\"O .I load .\"O (a floating-point number). .\"O With no argument, removes a previous load limit. .TP 0.5i \fB\-l\fP [\fIload\fP], \fB\-\-load\-average\fP[=\fIload\fP] 他のジョブが動作していて、 ロードアベレージが少なくとも \fIload\fP (浮動小数)なら、 新しいジョブ (コマンド) を実行しないことを指定する。 引数無しの場合には、以前に指定した負荷の制限が取り除かれる。 .\"O ---------------------------------------- .\"O .TP 0.5i .\"O \fB\-L\fR, \fB\-\-check\-symlink\-times\fR .\"O Use the latest mtime between symlinks and target. .TP 0.5i \fB\-L\fP, \fB\-\-check\-symlink\-times\fP シンボリックリンクとターゲットのうち、 最新の mtime を使用する。 .\"O ---------------------------------------- .\"O .TP 0.5i .\"O \fB\-n\fR, \fB\-\-just\-print\fR, \fB\-\-dry\-run\fR, \fB\-\-recon\fR .\"O Print the commands that would be executed, but do not execute them (except in .\"O certain circumstances). .TP 0.5i \fB\-n\fP, \fB\-\-just\-print\fP, \fB\-\-dry\-run\fP, \fB\-\-recon\fP 実行するコマンドの表示だけを行い、 (特定の状況を除いては) 実際の実行を行わない。 .\"O ---------------------------------------- .\"O .TP 0.5i .\"O \fB\-o\fR \fIfile\fR, \fB\-\-old\-file\fR=\fIfile\fR, \fB\-\-assume\-old\fR=\fIfile\fR .\"O Do not remake the file .\"O .I file .\"O even if it is older than its dependencies, and do not remake anything .\"O on account of changes in .\"O .IR file . .\"O Essentially the file is treated as very old and its rules are ignored. .TP 0.5i \fB\-o\fP \fIfile\fP, \fB\-\-old\-file\fP=\fIfile\fP, \fB\-\-assume\-old\fP=\fIfile\fP \fIfile\fP が依存先のファイルより古い場合であっても、 再構築を行わなず、 \fIfile\fP が変更されても、 他のファイルの再構築を一切行わない。 実質的にそのファイルは非常に古いファイルとして扱われ、 規則が無視される。 .\"O ---------------------------------------- .\"O .TP 0.5i .\"O \fB\-O\fR[\fItype\fR], \fB\-\-output\-sync\fR[=\fItype\fR] .\"O When running multiple jobs in parallel with \fB-j\fR, ensure the output of .\"O each job is collected together rather than interspersed with output from .\"O other jobs. If .\"O .I type .\"O is not specified or is .\"O .B target .\"O the output from the entire recipe for each target is grouped together. If .\"O .I type .\"O is .\"O .B line .\"O the output from each command line within a recipe is grouped together. .\"O If .\"O .I type .\"O is .\"O .B recurse .\"O output from an entire recursive make is grouped together. If .\"O .I type .\"O is .\"O .B none .\"O output synchronization is disabled. .TP 0.5i \fB\-O\fP[\fItype\fP], \fB\-\-output\-sync\fP[=\fItype\fP] \fB\-j\fP を使って複数ジョブを並行で実行する場合、それぞれのジョブからの出力をばらばらに行うのではなく、個々のジョブ出力を取りまとめるようにする。\fItype\fP が未指定か \fBtarget\fP に指定されている場合、各ターゲットごとにレシピ全体の出力結果がまとめらる。\fItype\fP が \fBline\fP の場合、レシピ内の各コマンドラインの出力結果がまとめられる。\fItype\fP が \fBrecurse\fP である場合、再帰呼び出しされた make 全体の出力結果がまとめられる。\fItype\fP が \fBnone\fP の場合、同期をとった出力は無効化される。 .\"O ---------------------------------------- .\"O .TP 0.5i .\"O \fB\-p\fR, \fB\-\-print\-data\-base\fR .\"O Print the data base (rules and variable values) that results from .\"O reading the makefiles; then execute as usual or as otherwise .\"O specified. .\"O This also prints the version information given by the .\"O .B \-v .\"O switch (see below). .\"O To print the data base without trying to remake any files, use .\"O .IR "make \-p \-f/dev/null" . .TP 0.5i \fB\-p\fP, \fB\-\-print\-data\-base\fP makefile を読み込んで得られたデータベース (規則と変数の値) を出力する。 特に指定しない限り、 その後の動作は通常通りである。 また、 \fB\-v\fP オプションで得られるバージョン情報も出力する。 ファイルを全く再構築することなく、データベースの表示だけを行うには \fImake \-p \-f/dev/null\fP を用いること。 .\"O ---------------------------------------- .\"O .TP 0.5i .\"O \fB\-q\fR, \fB\-\-question\fR .\"O ``Question mode''. .\"O Do not run any commands, or print anything; just return an exit status .\"O that is zero if the specified targets are already up to date, nonzero .\"O otherwise. .TP 0.5i \fB\-q\fP, \fB\-\-question\fP 「問い合わせモード」で動作する。 コマンドを全く実行せず、何も表示しない。 ただ、指定されたターゲットが既に最新ならば終了ステータス 0 を返し、 そうでなければ 0 でないステータスを返す。 .\"O ---------------------------------------- .\"O .TP 0.5i .\"O \fB\-r\fR, \fB\-\-no\-builtin\-rules\fR .\"O Eliminate use of the built\-in implicit rules. .\"O Also clear out the default list of suffixes for suffix rules. .TP 0.5i \fB\-r\fP, \fB\-\-no\-builtin\-rules\fP 組み込みの暗黙的ルールを使用しない。 また、添字規則で使うデフォルトの添字のリストもすべて消去する。 .\"O ---------------------------------------- .\"O .TP 0.5i .\"O \fB\-R\fR, \fB\-\-no\-builtin\-variables\fR .\"O Don't define any built\-in variables. .TP 0.5i \fB\-R\fP, \fB\-\-no\-builtin\-variables\fP 組み込みの変数を一切定義しない。 .\"O ---------------------------------------- .\"O .TP 0.5i .\"O \fB\-s\fR, \fB\-\-silent\fR, \fB\-\-quiet\fR .\"O Silent operation; do not print the commands as they are executed. .TP 0.5i \fB\-s\fP, \fB\-\-silent\fP, \fB\-\-quiet\fP 静かに動作する。 コマンドを実行する際に、コマンドの表示を行わない。 .\"O ---------------------------------------- .\"O .TP 0.5i .\"O .B \-\-no\-silent .\"O Cancel the effect of the \fB\-s\fR option. .TP 0.5i \fB\-\-no\-silent\fP \fB\-s\fP オプションの機能をキャンセルする。 .\"O ---------------------------------------- .\"O .TP 0.5i .\"O \fB\-S\fR, \fB\-\-no\-keep\-going\fR, \fB\-\-stop\fR .\"O Cancel the effect of the .\"O .B \-k .\"O option. .TP 0.5i \fB\-S\fP, \fB\-\-no\-keep\-going\fP, \fB\-\-stop\fP \fB\-k\fP オプションの機能をキャンセルする。 .\"O ---------------------------------------- .\"O .TP 0.5i .\"O \fB\-t\fR, \fB\-\-touch\fR .\"O Touch files (mark them up to date without really changing them) .\"O instead of running their commands. .\"O This is used to pretend that the commands were done, in order to fool .\"O future invocations of .\"O .BR make . .TP 0.5i \fB\-t\fP, \fB\-\-touch\fP コマンドを実行せずにファイルにタッチする (実際にはファイルを変更せず、 最新の印を付ける)。 このオプションを使うと見かけ上、 コマンドが実行されたことになり、 後で起動する \fBmake\fP をだますことができる。 .\"O ---------------------------------------- .\"O .TP 0.5i .\"O .B \-\-trace .\"O Information about the disposition of each target is printed (why the target is .\"O being rebuilt and what commands are run to rebuild it). .TP 0.5i \fB\-\-trace\fP 各ターゲットの処理に関する情報が出力される (ターゲット再ビルドの理由や、 再ビルドにあたって実行したコマンドが示される)。 .\"O ---------------------------------------- .\"O .TP 0.5i .\"O \fB\-v\fR, \fB\-\-version\fR .\"O Print the version of the .\"O .B make .\"O program plus a copyright, a list of authors and a notice that there .\"O is no warranty. .TP 0.5i \fB\-v\fP, \fB\-\-version\fP \fBmake\fP プログラムのバージョンおよび著作権表示、作者のリスト、無保証であることの宣言を出力する。 .\"O ---------------------------------------- .\"O .TP 0.5i .\"O \fB\-w\fR, \fB\-\-print\-directory\fR .\"O Print a message containing the working directory .\"O before and after other processing. .\"O This may be useful for tracking down errors from complicated nests of .\"O recursive .\"O .B make .\"O commands. .TP 0.5i \fB\-w\fP, \fB\-\-print\-directory\fP 他の処理を行う前後に、作業ディレクトリを表示する。 再帰的な \fBmake\fP コマンドが複雑な入れ子になっている状況で、 エラーを追跡する際に便利である。 .\"O ---------------------------------------- .\"O .TP 0.5i .\"O .B \-\-no\-print\-directory .\"O Turn off .\"O .BR \-w , .\"O even if it was turned on implicitly. .TP 0.5i \fB\-\-no\-print\-directory\fP \fB\-w\fP をオフにする。 \fB\-w\fP が暗黙で指定される場合でもオフになる。 .\"O ---------------------------------------- .\"O .TP 0.5i .\"O \fB\-W\fR \fIfile\fR, \fB\-\-what\-if\fR=\fIfile\fR, \fB\-\-new\-file\fR=\fIfile\fR, \fB\-\-assume\-new\fR=\fIfile\fR .\"O Pretend that the target .\"O .I file .\"O has just been modified. .\"O When used with the .\"O .B \-n .\"O flag, this shows you what would happen if you were to modify that file. .\"O Without .\"O .BR \-n , .\"O it is almost the same as running a .\"O .I touch .\"O command on the given file before running .\"O .BR make , .\"O except that the modification time is changed only in the imagination of .\"O .BR make . .TP 0.5i \fB\-W\fP \fIfile\fP, \fB\-\-what\-if\fP=\fIfile\fP, \fB\-\-new\-file\fP=\fIfile\fP, \fB\-\-assume\-new\fP=\fIfile\fP ターゲット \fIfile\fP が変更されたばかりのものとして動作する。 \fB\-n\fP フラグを指定している場合、 そのファイルを変更するとどうなるかが表示される。 \fB\-n\fP が指定されていない場合の動作は、 \fBmake\fP の実行前に、 指定されたファイルに対して \fItouch\fP を行った時とほぼ同じである。 ただし、修正時刻が変更されるのは \fBmake\fP の内部だけである点が異なる。 .\"O ---------------------------------------- .\"O .TP 0.5i .\"O .B \-\-warn\-undefined\-variables .\"O Warn when an undefined variable is referenced. .TP 0.5i \fB\-\-warn\-undefined\-variables\fP 未定義の変数が参照された際に警告を出す。 .\"O ---------------------------------------- .\"O .SH "EXIT STATUS" .\"O GNU .\"O .B make .\"O exits with a status of zero if all makefiles were successfully parsed .\"O and no targets that were built failed. A status of one will be returned .\"O if the .\"O .B \-q .\"O flag was used and .\"O .B make .\"O determines that a target needs to be rebuilt. A status of two will be .\"O returned if any errors were encountered. .SH 終了ステータス すべての makefile が正常に読み込まれ、ビルド対象のどのターゲットも失敗しなかった場合、 GNU \fBmake\fP はステータス 0 で終了する。 \fB\-q\fP フラグが使用され、 \fBmake\fP がターゲットの再ビルドが必要と判断した場合には、 ステータス 1 が返される。 何かエラーが発生した場合は、 ステータス 2 が返される。 .\"O ---------------------------------------- .\"O .SH "SEE ALSO" .\"O The full documentation for .\"O .B make .\"O is maintained as a Texinfo manual. If the .\"O .B info .\"O and .\"O .B make .\"O programs are properly installed at your site, the command .SH 関連項目 \fBmake\fP の完全なドキュメントは Texinfo マニュアルとしてメンテナンスされている。\fBinfo\fP と \fBmake\fP の両プログラムが適切にインストールされていれば、以下のコマンド .\"O ---------------------------------------- .\"O .IP .\"O .B info make .IP \fBinfo make\fP .\"O ---------------------------------------- .\"O .PP .\"O should give you access to the complete manual. .PP を実行して完全なマニュアルを参照できる。 .\"O ---------------------------------------- .\"O .SH BUGS .\"O See the chapter ``Problems and Bugs'' in .\"O .IR "The GNU Make Manual" . .SH バグ \fIThe GNU Make Manual\fP の「問題点とバグ (Problems and Bugs)」の章を参照すること。 .\"O ---------------------------------------- .\"O .SH AUTHOR .\"O This manual page contributed by Dennis Morse of Stanford University. .\"O Further updates contributed by Mike Frysinger. It has been reworked by Roland .\"O McGrath. Maintained by Paul Smith. .SH 著者 このオンラインマニュアルはスタンフォード大学の Dennis Morse 氏が寄付したものである。 さらなる改訂が Mike Frysinger から提供された。 その後 Roland McGrath が改訂した。 現在は Paul Smith が保守を行っている。 .\"O ---------------------------------------- .\"O .SH "COPYRIGHT" .\"O Copyright \(co 1992-1993, 1996-2020 Free Software Foundation, Inc. .\"O This file is part of .\"O .IR "GNU make" . .SH 著作権 Copyright \(co 1992\-1993, 1996\-2020 Free Software Foundation, Inc. This file is part of \fIGNU make\fP. .\"O ---------------------------------------- .\"O .LP .\"O GNU Make is free software; you can redistribute it and/or modify it under the .\"O terms of the GNU General Public License as published by the Free Software .\"O Foundation; either version 3 of the License, or (at your option) any later .\"O version. .LP GNU Make is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 3 of the License, or (at your option) any later version. .\"O ---------------------------------------- .\"O .LP .\"O GNU Make is distributed in the hope that it will be useful, but WITHOUT ANY .\"O WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR .\"O A PARTICULAR PURPOSE. See the GNU General Public License for more details. .LP GNU Make is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. .\"O ---------------------------------------- .\"O .LP .\"O You should have received a copy of the GNU General Public License along with .\"O this program. If not, see .\"O .IR http://www.gnu.org/licenses/ . .LP You should have received a copy of the GNU General Public License along with this program. If not, see \fIhttp://www.gnu.org/licenses/\fP. .\"O ----------------------------------------