summaryrefslogtreecommitdiffstats
path: root/Makefile
AgeCommit message (Collapse)Author
2024-05-24Add `lint` to make targetkyu08
2023-09-30Change Makefile to build non-optimizedStefan Haller
2023-09-29Use go:generate for generating cheatsheetsStefan Haller
This has several benefits: - it's less code - we're using the same mechanism to generate all our auto-generated files, so if someone wants to add a new one, it's clear which pattern to follow - we can re-generate all generated files with a single command ("go generate ./...", or "make generate") - we only need a single check on CI to check that all files are up to date (see previous commit)
2023-09-25Pass MAKECMDGOALS to make integration-test-tuiStefan Haller
We need this to be able to pass the "-race" argument, i.e. make integration-test-tui -- -race
2023-09-10Change "make run" to do a build and then launch lazygitStefan Haller
As far as I can tell, there's not much of a difference in behavior between the two. The advantage of doing it this way is that you can attach a debugger to the running lazygit process; see next commit.
2023-08-19Add Makefilekyu08