all:
	musl-gcc -O2 -static-pie -fPIE -fstack-protector-strong \
	-D_FORTIFY_SOURCE=2 -Wl,-z,relro -Wl,-z,now \
	fdrawterm.c -o fdrawterm -lpthread
	strip fdrawterm
clean:
	rm fdrawterm
run:
	./demos.sh
