vimspector/tests/testdata/cpp/simple/Makefile
2020-09-11 15:43:53 +01:00

11 lines
152 B
Makefile

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