mirror of
https://github.com/jart/cosmopolitan.git
synced 2025-01-31 11:37:35 +00:00
21 lines
715 B
Text
21 lines
715 B
Text
|
#!/bin/sh
|
||
|
#-*-mode:sh;indent-tabs-mode:nil;tab-width:2;coding:utf-8-*-┐
|
||
|
#───vi: set net ft=sh ts=2 sts=2 fenc=utf-8 :vi─────────────┘
|
||
|
#
|
||
|
# SYNOPSIS
|
||
|
#
|
||
|
# HELLO BUILD
|
||
|
#
|
||
|
# OVERVIEW
|
||
|
#
|
||
|
# We generate a line at the start of each Makefile run, because if we
|
||
|
# use `make V=0` mode then the terminal logging trick we use in
|
||
|
# tool/build/compile.c will delete the previous line, and we'd rather
|
||
|
# have that line not be the bash prompt that ran make.
|
||
|
#
|
||
|
# This script is also useful for giving us an indicator each time the
|
||
|
# build restarts itself from scratch, which can happen in cases like
|
||
|
# when dependencies need to be regenerated by tool/build/mkdeps.c
|
||
|
|
||
|
echo ♥cosmo >&2
|