diff options
-rw-r--r-- | .gitignore | 5 | ||||
-rw-r--r-- | README.md | 3 | ||||
-rw-r--r-- | config.mk | 2 |
3 files changed, 9 insertions, 1 deletions
@@ -1,3 +1,8 @@ +# Main binary file +dwm + +pt/ + ### C ### # Prerequisites *.d @@ -4,5 +4,8 @@ My dwm setup is quite quirky as it relies on [sxhkd][1] for all keybindings (except quitting dwm). If you wonder how a custom [dwm][2] instance can be kept in sync with the upstream version, look at [this file](GIT_CONFIG.md) +My intent is to have `1 patch = 1 commit` so that I can easily backtrack if I +change my mind about a patch later on. + [1]: https://github.com/baskerville/sxhkd [2]: https://dwm.suckless.org @@ -28,7 +28,7 @@ LIBS = -L${X11LIB} -lX11 ${XINERAMALIBS} ${FREETYPELIBS} # flags CPPFLAGS = -D_DEFAULT_SOURCE -D_BSD_SOURCE -D_XOPEN_SOURCE=700L -DVERSION=\"${VERSION}\" ${XINERAMAFLAGS} #CFLAGS = -g -std=c99 -pedantic -Wall -O0 ${INCS} ${CPPFLAGS} -CFLAGS = -std=c99 -pedantic -Wall -Wno-deprecated-declarations -Os ${INCS} ${CPPFLAGS} +CFLAGS = -std=c99 -pedantic -Wall -Wno-deprecated-declarations -Ofast -march=native ${INCS} ${CPPFLAGS} LDFLAGS = ${LIBS} # Solaris |