aboutsummaryrefslogtreecommitdiff
path: root/makefile
diff options
context:
space:
mode:
authorNunoSempere <nuno.sempere@protonmail.com>2023-05-15 12:11:21 -0400
committerNunoSempere <nuno.sempere@protonmail.com>2023-05-15 12:11:21 -0400
commit84df2273ebc63703c494b681a941d7984cace42b (patch)
tree2bf5c72105153ee2af50e0b13b7906fd7a730c80 /makefile
parent6ef555fc446562a3c314eb8bae26b0457d7b7e38 (diff)
css tweaks; to be reverted
Diffstat (limited to 'makefile')
-rw-r--r--makefile10
1 files changed, 7 insertions, 3 deletions
diff --git a/makefile b/makefile
index 43f8eb5..f4b4c4c 100644
--- a/makefile
+++ b/makefile
@@ -6,15 +6,19 @@
# make uninstall
## C compiler
-CC=gcc # gcc: more options. Also I don't know whether tcc has error messages/debug options.
-## CC=tcc # tcc: much faster
+CC=gcc# gcc: more options. Also I don't know whether tcc has error messages/debug options.
+# CC=tcc # tcc: much faster, may not work with some options.
+## CC=clang # tcc: much faster, may not work with some options.
+
+## Compiler flags
+DEBUG= #'-g'
+# MULTICORE=-j 4#
## Main file
SRC=rose.c
## Dependencies
DEPS='webkit2gtk-4.0'
-DEBUG= #'-g'
INCS=`pkg-config --cflags ${DEPS}`
LIBS=`pkg-config --libs ${DEPS}`