Fix pthread_create

This commit is contained in:
Kamil Trzcinski 2022-04-05 12:37:18 +02:00
parent 3b04f8d45b
commit 7a3e851081

View File

@ -4,7 +4,7 @@ HTML := $(wildcard html/*.js html/*.html)
HTML_SRC := $(addsuffix .c,$(HTML))
camera_stream: $(SRC) $(HTML_SRC) $(HEADERS)
gcc -Werror -g -lpthread -I$(PWD) -o $@ $(filter %.c, $^)
gcc -Werror -g -I$(PWD) -o $@ $(filter %.c, $^) -lpthread
html/%.c: html/%
xxd -i $< > $@.tmp