- Remove config.h from gitignore so personal configuration gets tracked - Add README.org for personal configuration - Add justfile to keep track of project specific commands
10 lines
143 B
Makefile
10 lines
143 B
Makefile
set shell := ["bash", "-c"]
|
|
|
|
# List just commands by default
|
|
default:
|
|
@just --list
|
|
|
|
# Rebuild project
|
|
dwl-rebuild:
|
|
sudo make clean all
|