all:
	musl-gcc -Q -O3 -static -fstack-protector-all -D_FORTIFY_SOURCE=2 -fPIE -pie -Wl,-z,relro,-z,now -o pipestore pipestore.c
	strip pipestore
	ls -l pipestore
clean:
	rm -rf pipestore
test:
	# default list test
	find / | ./pipestore
