dogeystamp
6feafc7a39
- keybinds changed from function keys to <leader> + ... - compilation now uses a makefile - quickfix tab added
6 lines
175 B
Makefile
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 $@
|