# Day 28 — Add Makefile for project commands
## Goal
Create a Makefile to simplify common project commands.
The goal is to learn a common DevOps-style automation pattern.
## Tasks
- [ ] Create a new folder `day28`
- [ ] Copy files from `day27`
- [ ] Create `Makefile`
- [ ] Add `make test`
- [ ] Add `make run`
- [ ] Add `make list`
- [ ] Add `make status`
- [ ] Run Makefile commands locally
- [ ] Add `day28/README.md`
- [ ] Update main `README.md`
- [ ] Commit and push changes
## Practice topics
- Makefile
- command automation
- DevOps workflow shortcuts
- local developer experience
- repeatable commands
## Expected result
Common commands work through Make:
```bash
make test
make list
make status
Day 28 — Add Makefile for common commands