2023-03-19 12:55:08 -04:00
|
|
|
# makefile for compiling individual files from vim
|
|
|
|
|
2023-05-20 16:27:20 -04:00
|
|
|
~/.cache/termdebug/bin/%: %.cpp
|
|
|
|
mkdir -p ~/.cache/termdebug/bin/
|
2023-03-19 12:55:08 -04:00
|
|
|
$(LINK.cpp) -g -Wall -Wpedantic $^ $(LOADLIBES) $(LDLIBS) -o $@
|
2023-04-12 11:20:21 -04:00
|
|
|
|
2023-05-20 16:27:20 -04:00
|
|
|
~/.cache/termdebug/bin/%: %.c
|
|
|
|
mkdir -p ~/.cache/termdebug/bin/
|
2023-04-12 11:20:21 -04:00
|
|
|
$(LINK.c) -g -Wall -Wpedantic $^ $(LOADLIBES) $(LDLIBS) -o $@
|