diff options
author | NunoSempere <nuno.sempere@protonmail.com> | 2023-05-15 12:11:34 -0400 |
---|---|---|
committer | NunoSempere <nuno.sempere@protonmail.com> | 2023-05-15 12:11:34 -0400 |
commit | 8dc67aaa1633383b2bb866abc8e39f8b6157c0d3 (patch) | |
tree | 7605143fceb2307376d23fcec267c6baf3aef053 /makefile | |
parent | 84df2273ebc63703c494b681a941d7984cace42b (diff) |
Revert "css tweaks; to be reverted"
This reverts commit 84df2273ebc63703c494b681a941d7984cace42b.
Diffstat (limited to 'makefile')
-rw-r--r-- | makefile | 10 |
1 files changed, 3 insertions, 7 deletions
@@ -6,19 +6,15 @@ # 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, may not work with some options. -## CC=clang # tcc: much faster, may not work with some options. - -## Compiler flags -DEBUG= #'-g' -# MULTICORE=-j 4# +CC=gcc # gcc: more options. Also I don't know whether tcc has error messages/debug options. +## CC=tcc # tcc: much faster ## Main file SRC=rose.c ## Dependencies DEPS='webkit2gtk-4.0' +DEBUG= #'-g' INCS=`pkg-config --cflags ${DEPS}` LIBS=`pkg-config --libs ${DEPS}` |