diff options
author | P. J. McDermott <pj@pehjota.net> | 2016-02-26 18:32:49 (EST) |
---|---|---|
committer | P. J. McDermott <pj@pehjota.net> | 2016-02-26 18:32:49 (EST) |
commit | b9fd6d1e6c6262f269e9bba9207c76aef914dbc5 (patch) | |
tree | 1697274ab2955a3aff66e97df1f04bc5d9bda8f6 /eshtrans | |
parent | 6fc35cb79a8a97408da899b52b0859e1662e2076 (diff) | |
download | eggshell-b9fd6d1e6c6262f269e9bba9207c76aef914dbc5.zip eggshell-b9fd6d1e6c6262f269e9bba9207c76aef914dbc5.tar.gz eggshell-b9fd6d1e6c6262f269e9bba9207c76aef914dbc5.tar.bz2 |
eshtrans/Makefile: Simplify stage targets
Diffstat (limited to 'eshtrans')
-rw-r--r-- | eshtrans/Makefile | 10 |
1 files changed, 2 insertions, 8 deletions
diff --git a/eshtrans/Makefile b/eshtrans/Makefile index fe1e8df..8ab8310 100644 --- a/eshtrans/Makefile +++ b/eshtrans/Makefile @@ -15,16 +15,10 @@ bootstrap: stage3 stage1: @printf 'Stage 1:\n' @time -p $(MAKE) eshtrans.stage1 2>&1 | sed 's/^/\t/' -stage2: - @printf 'Stage 1:\n' - @time -p $(MAKE) eshtrans.stage1 2>&1 | sed 's/^/\t/' - @printf 'Stage 2:\n' - @time -p $(MAKE) eshtrans.stage2 2>&1 | sed 's/^/\t/' -stage3: - @printf 'Stage 1:\n' - @time -p $(MAKE) eshtrans.stage1 2>&1 | sed 's/^/\t/' +stage2: stage1 @printf 'Stage 2:\n' @time -p $(MAKE) eshtrans.stage2 2>&1 | sed 's/^/\t/' +stage3: stage2 @printf 'Stage 3:\n' @time -p $(MAKE) eshtrans.stage3 2>&1 | sed 's/^/\t/' |