Skip to Content
Small, Sharp Software Tools
book

Small, Sharp Software Tools

by Brian P. Hogan
June 2019
Intermediate to advanced
328 pages
7h 27m
English
Pragmatic Bookshelf
Content preview from Small, Sharp Software Tools

Automating Tasks with make

make is an automation tool aimed at creating builds for software. It’s commonly used to compile and install software. Many times, package managers don’t have the very latest version of a particular piece of software available, so the only way to install the most recent version is to download the source code and compile it yourself. The process usually involves downloading the source code archive, extracting it, switching to the directory containing the code, running a script called configure to set some variables based on your environment, and running make to compile the software. It usually looks something like this:

 $ ​​./configure
 $ ​​make
 $ ​​sudo​​ ​​make​​ ​​install

make works by reading a file named ...

Become an O’Reilly member and get unlimited access to this title plus top books and audiobooks from O’Reilly and nearly 200 top publishers, thousands of courses curated by job role, 150+ live events each month,
and much more.
Start your free trial

You might also like

The VimL Primer

The VimL Primer

Benjamin Klein
What Employees Want Most in Uncertain Times

What Employees Want Most in Uncertain Times

Kristine W. Powers, Jessica B.B. Diaz

Publisher Resources

ISBN: 9781680507003Errata Page