What's the difference between make
and make dist
? I understand that dist is a "target", but what target is used by default, and what does the dist target typically do differently from the default make?
5
votes
1 Answers
4
votes
"dist" is used to create a distribution tar file for this program. Please refer https://www.gnu.org/prep/standards/html_node/Standard-Targets.html for more details.
dist
an alias ofall
, there's no difference in this case, but generallydist
creates a source distribution. – user657267