]> gitweb.ps.run Git - matrix_esp_thesis/blob - Makefile
Initial commit. Rudimentary readme, mockup examples without actual implementation...
[matrix_esp_thesis] / Makefile
1 CC=gcc\r
2 \r
3 C_OPTS=-Wall -Wextra -pedantic\r
4 C_OPTS+=-I src/\r
5 C_OPTS+=-I ext/olm/include/\r
6 C_OPTS+=src/matrix.c\r
7 \r
8 out/examples/%: examples/%.c\r
9         $(CC) -o out/examples/$* examples/$*.c $(C_OPTS)\r
10 \r
11 \r
12 .PHONY: examples\r
13 \r
14 examples: out/examples/Login out/examples/Send out/examples/SendEncrypted out/examples/Sync