streamlet-examples/Makefile
author František Kučera <franta-hg@frantovo.cz>
Wed, 29 Jan 2020 00:58:37 +0100
branchv_0
changeset 70 018e2609f5bb
parent 63 8c6885543e2c
child 72 f7b9db6fc32b
permissions -rw-r--r--
streamlets: move NULL handling from particular streamlets to StreamletAttributeFinder

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