dotfiles

configuration files for shell, text editor, graphical environment, etc.
git clone git://src.adamsgaard.dk/dotfiles # fast
git clone https://src.adamsgaard.dk/dotfiles.git # slow
Log | Files | Refs | README | LICENSE Back to index

commit d2c93257d6955c1f6ac65d18f1461e3cd51d2a9e
parent 30ed0f2f50e3989bd2c848b47396448a423792e8
Author: Anders Damsgaard <anders@adamsgaard.dk>
Date:   Mon, 29 Mar 2021 17:23:08 +0200

.profile: allow extra CFLAGS/LDFLAGS and optimize code by default

Diffstat:
M.profile | 4++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.profile b/.profile @@ -99,8 +99,8 @@ create_repo() { fi } -alias m='make' -alias mw='make CFLAGS="-Wall -Wextra -pedantic -std=c99 -g" LDFLAGS="-g"' +alias m='make CFLAGS="${CFLAGS} -march=native -O3 -pipe"' +alias mw='make CFLAGS="${CFLAGS} -Wall -Wextra -pedantic -std=c99 -g" LDFLAGS="${LDFLAGS} -g"' alias mc='make clean' alias me='make edit'