2022-04-21 21:14:03 +00:00
|
|
|
# nsxiv version
|
2023-07-04 04:41:27 +00:00
|
|
|
VERSION = 32
|
2022-04-21 21:14:03 +00:00
|
|
|
|
|
|
|
# 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)
|
2023-01-08 10:02:56 +00:00
|
|
|
|
2023-05-09 00:34:28 +00:00
|
|
|
# CFLAGS, any additional compiler flags goes here
|
|
|
|
CFLAGS = -Wall -pedantic -O2 -DNDEBUG
|
|
|
|
# Uncomment for a debug build using gcc/clang
|
2023-05-26 07:06:17 +00:00
|
|
|
# CFLAGS = -Wall -pedantic -DDEBUG -g3 -fsanitize=address,undefined
|
2023-05-09 00:34:28 +00:00
|
|
|
# LDFLAGS = $(CFLAGS)
|
2022-04-21 21:14:03 +00:00
|
|
|
|
|
|
|
# icons that will be installed via `make icon`
|
|
|
|
ICONS = 16x16.png 32x32.png 48x48.png 64x64.png 128x128.png
|
2022-04-21 21:16:46 +00:00
|
|
|
|
|
|
|
# Uncomment on OpenBSD
|
|
|
|
# HAVE_INOTIFY = 0
|
|
|
|
# lib_fonts_bsd_0 =
|
2023-06-29 23:40:52 +00:00
|
|
|
# lib_fonts_bsd_1 = -lfreetype -L/usr/X11R6/lib/freetype2
|
2022-04-21 21:16:46 +00:00
|
|
|
# inc_fonts_bsd_0 =
|
|
|
|
# inc_fonts_bsd_1 = -I/usr/X11R6/include/freetype2
|
2023-06-29 23:40:52 +00:00
|
|
|
# CPPFLAGS = -I/usr/X11R6/include -I/usr/local/include $(inc_fonts_bsd_$(HAVE_LIBFONTS))
|
|
|
|
# LDLIBS = -L/usr/X11R6/lib -L/usr/local/lib $(lib_fonts_bsd_$(HAVE_LIBFONTS))
|