X-Git-Url: https://gitweb.ps.run/matrix_esp_thesis/blobdiff_plain/d43e8671acc5709c192e159e0d91626f0677cdf1..27a83e93114c31de4b7bd33320a85e5fad0196a3:/Makefile diff --git a/Makefile b/Makefile index d19abaa..f30f057 100644 --- a/Makefile +++ b/Makefile @@ -3,9 +3,13 @@ CC=gcc C_OPTS=-Wall -Wextra -pedantic C_OPTS+=-I src/ C_OPTS+=-I ext/olm/include/ +C_OPTS+=-I ext/mjson/src C_OPTS+=src/matrix.c +C_OPTS+=src/matrix_http_curl.c +C_OPTS+=ext/mjson/src/mjson.c +C_OPTS+=-l curl -out/examples/%: examples/%.c +out/examples/%: examples/%.c src/* $(CC) -o out/examples/$* examples/$*.c $(C_OPTS)