mirror of
https://codeberg.org/nsxiv/nsxiv
synced 2024-10-31 09:20:19 +00:00
40480596ca
slight addendum to 657080a7e5
instead of disabling asserts by adding -DNDEBUG to config.mk, this
disables asserts by default in the source code itself. this way, if
someone compiles with `make CFLAGS="-O3 -march=native"` without knowing
about asserts/-DNDEBUG then he won't accidentally get a build with
assertions in it.
this basically makes the assertions opt-in, if someone wants it, he'll
need to *explicitly* set `-DDEBUG` to get it. so that it's not possible
to accidentally end up with assertions enabled.
Reviewed-on: https://codeberg.org/nsxiv/nsxiv/pulls/447
Reviewed-by: TAAPArthur <taaparthur@noreply.codeberg.org>
43 lines
1.3 KiB
Makefile
43 lines
1.3 KiB
Makefile
# nsxiv version
|
|
VERSION = 31
|
|
|
|
# PREFIX for install
|
|
PREFIX = /usr/local
|
|
MANPREFIX = $(PREFIX)/share/man
|
|
EGPREFIX = $(PREFIX)/share/doc/nsxiv/examples
|
|
|
|
# default value for optional dependencies. 1 = enabled, 0 = disabled
|
|
OPT_DEP_DEFAULT = 1
|
|
|
|
# autoreload backend: 1 = inotify, 0 = none
|
|
HAVE_INOTIFY = $(OPT_DEP_DEFAULT)
|
|
|
|
# optional dependencies, see README for more info
|
|
HAVE_LIBFONTS = $(OPT_DEP_DEFAULT)
|
|
HAVE_LIBEXIF = $(OPT_DEP_DEFAULT)
|
|
|
|
# unused if imlib2 version is 1.8.0 or higher.
|
|
# these options will be removed eventually.
|
|
HAVE_LIBGIF = $(OPT_DEP_DEFAULT)
|
|
HAVE_LIBWEBP = $(OPT_DEP_DEFAULT)
|
|
|
|
# Compiler and linker
|
|
CC = c99
|
|
# CFLAGS, any additional compiler flags goes here
|
|
CFLAGS = -Wall -pedantic -O2 -DNDEBUG
|
|
# Uncomment for a debug build using gcc/clang
|
|
# CFLAGS = -Wall -pedantic -DDEBUG -g3 -fsanitize=address,undefined
|
|
# LDFLAGS = $(CFLAGS)
|
|
|
|
# icons that will be installed via `make icon`
|
|
ICONS = 16x16.png 32x32.png 48x48.png 64x64.png 128x128.png
|
|
|
|
# Uncomment on OpenBSD
|
|
# HAVE_INOTIFY = 0
|
|
# lib_fonts_bsd_0 =
|
|
# lib_fonts_bsd_1 = -lfreetype
|
|
# inc_fonts_bsd_0 =
|
|
# inc_fonts_bsd_1 = -I/usr/X11R6/include/freetype2
|
|
# LDLIBS = -lz -L/usr/local/lib -L/usr/X11R6/lib $(lib_fonts_bsd_$(HAVE_LIBFONTS))
|
|
# CPPFLAGS = -I/usr/local/include -I/usr/X11R6/include $(inc_fonts_bsd_$(HAVE_LIBFONTS))
|