#!/usr/bin/env bash

# 🅳🅾🆃🅵🅸🅻🅴🆂 (v0.2.469) - <https://dotfiles.io>
# Made with ♥ in London, UK by Sebastien Rousseau
# Copyright (c) 2015-2025. All rights reserved
# License: MIT

# 🅼🅰🅺🅴 🅰🅻🅸🅰🆂🅴🆂

# mk - make
alias mk='make'

# mkc - make clean
alias mkc='make clean'

# mkd - make doc
alias mkd='make doc'

# mkf - make format
alias mkf='make format'

# mkh - make help
alias mkh='make help'

# mki - make install
alias mki='make install'

# mka - make all
alias mka='make all'

# mkr - make run
alias mkr='make run'

# mkt - make test
alias mkt='make test'
