streamlet-examples/Makefile
branchv_0
changeset 63 8c6885543e2c
child 72 f7b9db6fc32b
equal deleted inserted replaced
62:a467e8cbd16b 63:8c6885543e2c
       
     1 all: xpath pid
       
     2 	
       
     3 .PHONY: all clean
       
     4 
       
     5 xpath: streamlet-common.h xpath.cpp
       
     6 	g++ -g -fno-omit-frame-pointer -fsanitize=address xpath.cpp -o xpath $(shell pkg-config --libs --cflags libxml++-2.6)
       
     7 
       
     8 pid: streamlet-common.h pid.cpp
       
     9 	g++ -g -fno-omit-frame-pointer -fsanitize=address pid.cpp -o pid
       
    10 
       
    11 clean:
       
    12 	rm -f xpath
       
    13 	rm -f pid