🎁 New User? Get 20% off your first purchase with code NEWUSER20 Register Now →
Menu

Categories

DevOps Beginner

What is Makefile?

A file containing build rules and commands that automates compilation and common project tasks using the make utility.

Makefiles define targets (tasks) with dependencies and shell commands. Running "make build" executes the build target. Make only rebuilds what has changed based on file timestamps, saving time on large projects.

Beyond compilation, Makefiles serve as project task runners: make test, make deploy, make clean. They provide a universal interface regardless of the underlying technology. Every developer can run make help to see available commands.

Related Terms

Docker Compose
A tool for defining and running multi-container Docker applications using a YAML configuration file.
ArgoCD
A declarative GitOps continuous delivery tool for Kubernetes that automatically syncs cluster state with Git repositories.
Prometheus
An open-source monitoring and alerting toolkit that collects time-series metrics using a pull-based model.
SRE (Site Reliability Engineering)
An engineering discipline that applies software engineering principles to infrastructure and operations to create reliable systems.
Blue-Green Deployment
A deployment strategy using two identical environments where traffic is switched from the old version to the new one instantly.
Observability
The ability to understand a system's internal state from its external outputs through metrics, logs, and traces.
View All DevOps Terms →