dots/src/.config/nvim/makefile
dogeystamp a13717fe60
nvim: misc fixes
vimspector now properly works
2023-05-20 16:27:20 -04:00

10 lines
311 B
Makefile

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