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

12 lines
177 B
Makefile

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