abouttreesummaryrefslogcommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorPatrick2023-11-14 12:34:39 +0100
committerPatrick2023-11-14 12:34:39 +0100
commitc351768df98c8239eb123ff9af036e574f47df99 (patch)
tree016145b2fc8e3f2ed4591a06528f23853d483c47 /Makefile
parent948d30fa138bd6c3eef75a234c90fa5843057d4b (diff)
downloadmatrix_esp_thesis-c351768df98c8239eb123ff9af036e574f47df99.tar.gz
matrix_esp_thesis-c351768df98c8239eb123ff9af036e574f47df99.zip
update Makefile
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index ce1ae2b..7bc0df3 100644
--- a/Makefile
+++ b/Makefile
@@ -12,8 +12,8 @@ C_OPTS+=-l ws2_32
C_OPTS+=-l ssl
C_OPTS+=-l crypto
C_OPTS+=-l stdc++
-#C_OPTS+=-fuse-ld=lld.exe -g -gcodeview -Wl,/debug,/pdb:out/test.pdb
-#C_OPTS+=-Wl,--verbose
+# uncomment to generate msvc debug symbols with clang (requires lld)
+# C_OPTS+=-fuse-ld=lld -g -gcodeview -Wl,/debug,/pdb:
out/examples/%: examples/%.c src/*
$(CC) -o out/examples/$* examples/$*.c $(C_OPTS)