2022-02-27 14:47:06 +00:00
|
|
|
.POSIX:
|
|
|
|
|
2021-09-16 10:32:59 +01:00
|
|
|
# nsxiv version
|
2022-03-03 12:31:33 +00:00
|
|
|
VERSION = 29
|
2017-09-06 19:12:09 +01:00
|
|
|
|
2021-09-14 15:42:57 +01:00
|
|
|
# PREFIX for install
|
2022-02-27 14:47:06 +00:00
|
|
|
PREFIX = /usr/local
|
|
|
|
MANPREFIX = $(PREFIX)/share/man
|
|
|
|
EGPREFIX = $(PREFIX)/share/doc/nsxiv/examples
|
2021-10-03 17:52:12 +01:00
|
|
|
|
|
|
|
# default value for optional dependencies. 1 = enabled, 0 = disabled
|
2022-02-27 14:47:06 +00:00
|
|
|
OPT_DEP_DEFAULT = 1
|
2017-01-26 21:18:32 +00:00
|
|
|
|
2021-10-03 17:52:12 +01:00
|
|
|
# autoreload backend: 1 = inotify, 0 = none
|
2022-02-27 14:47:06 +00:00
|
|
|
HAVE_INOTIFY = $(OPT_DEP_DEFAULT)
|
2021-10-03 17:52:12 +01:00
|
|
|
|
|
|
|
# optional dependencies, see README for more info
|
2022-02-27 14:47:06 +00:00
|
|
|
HAVE_LIBFONTS = $(OPT_DEP_DEFAULT)
|
|
|
|
HAVE_LIBGIF = $(OPT_DEP_DEFAULT)
|
|
|
|
HAVE_LIBEXIF = $(OPT_DEP_DEFAULT)
|
|
|
|
HAVE_LIBWEBP = $(OPT_DEP_DEFAULT)
|
2017-09-08 14:56:55 +01:00
|
|
|
|
2021-09-14 15:42:57 +01:00
|
|
|
# CFLAGS, any optimization flags goes here
|
2022-02-27 14:47:06 +00:00
|
|
|
CFLAGS = -std=c99 -Wall -pedantic
|
2021-09-14 15:42:57 +01:00
|
|
|
|
2021-09-23 03:17:52 +01:00
|
|
|
# icons that will be installed via `make icon`
|
|
|
|
ICONS = 16x16.png 32x32.png 48x48.png 64x64.png 128x128.png
|
|
|
|
|
2021-09-19 09:49:56 +01:00
|
|
|
inc_fonts_0 =
|
|
|
|
inc_fonts_1 = -I/usr/include/freetype2 -I$(PREFIX)/include/freetype2
|
|
|
|
|
2021-09-14 15:42:57 +01:00
|
|
|
CPPFLAGS = -D_XOPEN_SOURCE=700 \
|
|
|
|
-DHAVE_LIBGIF=$(HAVE_LIBGIF) -DHAVE_LIBEXIF=$(HAVE_LIBEXIF) \
|
2021-09-19 09:49:56 +01:00
|
|
|
-DHAVE_LIBWEBP=$(HAVE_LIBWEBP) -DHAVE_LIBFONTS=$(HAVE_LIBFONTS) \
|
|
|
|
$(inc_fonts_$(HAVE_LIBFONTS))
|
2014-10-24 09:50:14 +01:00
|
|
|
|
2021-09-19 09:49:56 +01:00
|
|
|
lib_fonts_0 =
|
|
|
|
lib_fonts_1 = -lXft -lfontconfig
|
2021-10-03 17:52:12 +01:00
|
|
|
lib_exif_0 =
|
|
|
|
lib_exif_1 = -lexif
|
|
|
|
lib_gif_0 =
|
|
|
|
lib_gif_1 = -lgif
|
|
|
|
lib_webp_0 =
|
|
|
|
lib_webp_1 = -lwebpdemux -lwebp
|
|
|
|
autoreload_0 = nop
|
|
|
|
autoreload_1 = inotify
|
2022-02-27 14:47:06 +00:00
|
|
|
|
|
|
|
NSXIV_LDLIBS = -lImlib2 -lX11 \
|
2021-10-03 17:52:12 +01:00
|
|
|
$(lib_exif_$(HAVE_LIBEXIF)) $(lib_gif_$(HAVE_LIBGIF)) \
|
2021-09-19 09:49:56 +01:00
|
|
|
$(lib_webp_$(HAVE_LIBWEBP)) $(lib_fonts_$(HAVE_LIBFONTS))
|
2021-10-03 17:52:12 +01:00
|
|
|
|
|
|
|
OBJS = autoreload_$(autoreload_$(HAVE_INOTIFY)).o commands.o image.o main.o options.o \
|
2017-10-23 09:28:28 +01:00
|
|
|
thumbs.o util.o window.o
|
2017-10-12 09:56:03 +01:00
|
|
|
|
|
|
|
.SUFFIXES:
|
|
|
|
.SUFFIXES: .c .o
|
|
|
|
|
2021-09-16 10:32:59 +01:00
|
|
|
all: nsxiv
|
2021-09-14 15:42:57 +01:00
|
|
|
|
2021-09-16 10:32:59 +01:00
|
|
|
nsxiv: $(OBJS)
|
2017-09-08 15:49:31 +01:00
|
|
|
@echo "LINK $@"
|
2022-02-27 14:47:06 +00:00
|
|
|
$(CC) $(LDFLAGS) -o $@ $(OBJS) $(LDLIBS) $(NSXIV_LDLIBS)
|
2017-10-12 09:56:03 +01:00
|
|
|
|
2021-09-14 15:42:57 +01:00
|
|
|
.c.o:
|
|
|
|
@echo "CC $@"
|
|
|
|
$(CC) $(CFLAGS) $(CPPFLAGS) -c -o $@ $<
|
|
|
|
|
2021-12-19 17:05:35 +00:00
|
|
|
$(OBJS): Makefile nsxiv.h config.h commands.h
|
2018-06-09 10:33:30 +01:00
|
|
|
options.o: version.h
|
2017-10-19 12:29:25 +01:00
|
|
|
window.o: icon/data.h
|
2017-10-12 09:56:03 +01:00
|
|
|
|
|
|
|
config.h:
|
|
|
|
@echo "GEN $@"
|
2021-09-14 15:42:57 +01:00
|
|
|
cp config.def.h $@
|
2011-01-17 13:57:59 +00:00
|
|
|
|
2018-06-09 10:33:30 +01:00
|
|
|
version.h: Makefile .git/index
|
|
|
|
@echo "GEN $@"
|
2022-02-27 14:47:06 +00:00
|
|
|
v="$$(git describe 2>/dev/null || true)"; \
|
2021-09-14 15:42:57 +01:00
|
|
|
echo "#define VERSION \"$${v:-$(VERSION)}\"" >$@
|
2018-06-09 10:33:30 +01:00
|
|
|
|
2021-09-16 22:35:29 +01:00
|
|
|
.git/index:
|
|
|
|
|
2011-01-17 13:57:59 +00:00
|
|
|
clean:
|
2021-10-03 17:52:12 +01:00
|
|
|
rm -f *.o nsxiv version.h
|
2011-09-08 14:41:18 +01:00
|
|
|
|
2021-09-25 06:00:21 +01:00
|
|
|
install-all: install install-desktop install-icon
|
|
|
|
|
|
|
|
install-desktop:
|
2021-09-23 03:17:52 +01:00
|
|
|
@echo "INSTALL nsxiv.desktop"
|
|
|
|
mkdir -p $(DESTDIR)$(PREFIX)/share/applications
|
|
|
|
cp nsxiv.desktop $(DESTDIR)$(PREFIX)/share/applications
|
|
|
|
|
2021-09-25 06:00:21 +01:00
|
|
|
install-icon:
|
2021-09-23 03:17:52 +01:00
|
|
|
@echo "INSTALL icon"
|
|
|
|
for f in $(ICONS); do \
|
|
|
|
dir="$(DESTDIR)$(PREFIX)/share/icons/hicolor/$${f%.png}/apps"; \
|
|
|
|
mkdir -p "$$dir"; \
|
|
|
|
cp "icon/$$f" "$$dir/nsxiv.png"; \
|
|
|
|
chmod 644 "$$dir/nsxiv.png"; \
|
|
|
|
done
|
|
|
|
|
2021-09-25 06:00:21 +01:00
|
|
|
uninstall-icon:
|
2021-09-23 03:17:52 +01:00
|
|
|
@echo "REMOVE icon"
|
|
|
|
for f in $(ICONS); do \
|
|
|
|
dir="$(DESTDIR)$(PREFIX)/share/icons/hicolor/$${f%.png}/apps"; \
|
|
|
|
rm -f "$$dir/nsxiv.png"; \
|
|
|
|
done
|
|
|
|
|
2011-09-08 14:41:18 +01:00
|
|
|
install: all
|
2021-09-16 10:32:59 +01:00
|
|
|
@echo "INSTALL bin/nsxiv"
|
2021-10-03 17:52:12 +01:00
|
|
|
mkdir -p $(DESTDIR)$(PREFIX)/bin
|
|
|
|
cp nsxiv $(DESTDIR)$(PREFIX)/bin/
|
|
|
|
chmod 755 $(DESTDIR)$(PREFIX)/bin/nsxiv
|
2021-09-16 10:32:59 +01:00
|
|
|
@echo "INSTALL nsxiv.1"
|
2013-01-10 18:11:57 +00:00
|
|
|
mkdir -p $(DESTDIR)$(MANPREFIX)/man1
|
2021-10-03 17:52:12 +01:00
|
|
|
sed "s!EGPREFIX!$(EGPREFIX)!g; s!PREFIX!$(PREFIX)!g; s!VERSION!$(VERSION)!g" nsxiv.1 \
|
2021-09-16 10:32:59 +01:00
|
|
|
>$(DESTDIR)$(MANPREFIX)/man1/nsxiv.1
|
|
|
|
chmod 644 $(DESTDIR)$(MANPREFIX)/man1/nsxiv.1
|
|
|
|
@echo "INSTALL share/nsxiv/"
|
2021-10-03 17:52:12 +01:00
|
|
|
mkdir -p $(DESTDIR)$(EGPREFIX)
|
|
|
|
cp examples/* $(DESTDIR)$(EGPREFIX)
|
|
|
|
chmod 755 $(DESTDIR)$(EGPREFIX)/*
|
2011-09-08 14:41:18 +01:00
|
|
|
|
2021-09-25 06:00:21 +01:00
|
|
|
uninstall: uninstall-icon
|
2021-09-16 10:32:59 +01:00
|
|
|
@echo "REMOVE bin/nsxiv"
|
|
|
|
rm -f $(DESTDIR)$(PREFIX)/bin/nsxiv
|
|
|
|
@echo "REMOVE nsxiv.1"
|
|
|
|
rm -f $(DESTDIR)$(MANPREFIX)/man1/nsxiv.1
|
2021-09-23 03:17:52 +01:00
|
|
|
@echo "REMOVE nsxiv.desktop"
|
|
|
|
rm -f $(DESTDIR)$(PREFIX)/share/applications/nsxiv.desktop
|
2021-09-16 10:32:59 +01:00
|
|
|
@echo "REMOVE share/nsxiv/"
|
2021-10-03 17:52:12 +01:00
|
|
|
rm -rf $(DESTDIR)$(EGPREFIX)
|
2017-09-08 15:49:31 +01:00
|
|
|
|