dots/src/.config/nvim/makefile
dogeystamp b93a5f4571
nvim: IDE stuff
it's all cool and LSP-ey now wow
2023-04-12 11:20:21 -04:00

10 lines
295 B
Makefile

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