facebook twitter hatena line email

Linux/Makefile

提供: 初心者エンジニアの簡易メモ
移動: 案内検索

Makefileとは

コマンドを集約できるもの

サンプルMakefile

vi sample.sh

#!/bin/bash
echo "sampledesu";

vi Makefile

sample:
[   tab   ]  sh sample.sh

[ tab ] はタブを入れる

Makefile実行方法

$ make sample
sh sample.sh
sampledesu