dots/src/.config/nvim/makefile
dogeystamp 6feafc7a39
nvim: overhaul of debugging system
- keybinds changed from function keys to <leader> + ...
- compilation now uses a makefile
- quickfix tab added
2023-03-19 12:55:08 -04:00

6 lines
175 B
Makefile

# makefile for compiling individual files from vim
~/.cache/termdebug/%: %.cpp
mkdir -p ~/.cache/termdebug/
$(LINK.cpp) -g -Wall -Wpedantic $^ $(LOADLIBES) $(LDLIBS) -o $@