diff -r a467e8cbd16b -r 8c6885543e2c streamlet-examples/Makefile --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/streamlet-examples/Makefile Mon Jan 27 00:03:14 2020 +0100 @@ -0,0 +1,13 @@ +all: xpath pid + +.PHONY: all clean + +xpath: streamlet-common.h xpath.cpp + g++ -g -fno-omit-frame-pointer -fsanitize=address xpath.cpp -o xpath $(shell pkg-config --libs --cflags libxml++-2.6) + +pid: streamlet-common.h pid.cpp + g++ -g -fno-omit-frame-pointer -fsanitize=address pid.cpp -o pid + +clean: + rm -f xpath + rm -f pid