vimspector/tests/testdata/cpp/simple/Makefile
2020-11-22 14:13:14 +00:00

11 lines
160 B
Makefile

CXXFLAGS=-g -O0 -std=c++17
.PHONY: all
TARGETS=simple variables struct printer threads
all: $(TARGETS)
clean:
rm -f $(TARGETS)
rm -rf $(TARGETS:%=%.dSYM)