all:
	musl-gcc -Q -O2 -static-pie -fPIE -fstack-protector-strong -D_FORTIFY_SOURCE=2 -Wl,-z,relro -Wl,-z,now fdraw.c -o fdraw -lpthread
	strip fdraw
	ls -l fdraw
clean:
	rm -f fdraw
install:
	cp fdraw /usr/bin/fdraw
