This repository has been archived on 2024-02-08. You can view files and clone it, but cannot push or open issues/pull-requests.
nsxiv/Makefile

69 lines
1.5 KiB
Makefile
Raw Normal View History

# Requires GNU make 3.80 or later
VERSION := git-20171006
2012-05-13 21:39:36 +02:00
all: sxiv
include config.mk
override CPPFLAGS += -I. -DVERSION=\"$(VERSION)\" -DHAVE_GIFLIB=$(HAVE_GIFLIB) -DHAVE_LIBEXIF=$(HAVE_LIBEXIF)
2017-09-08 15:56:55 +02:00
LDLIBS := -lImlib2 -lX11 -lXft
ifneq ($(HAVE_GIFLIB),0)
LDLIBS += -lgif
endif
ifneq ($(HAVE_LIBEXIF),0)
LDLIBS += -lexif
endif
SRC := autoreload_$(AUTORELOAD).c commands.c image.c main.c options.c thumbs.c util.c window.c
DEP := $(SRC:.c=.d)
OBJ := $(SRC:.c=.o)
2011-01-17 14:57:59 +01:00
$(OBJ): config.h Makefile
%.o: %.c
2017-09-11 17:08:38 +02:00
@echo "CC $@"
2017-09-08 15:56:55 +02:00
$(CC) $(CFLAGS) $(CPPFLAGS) $(DEPFLAGS) -c -o $@ $<
config.h: | config.def.h
@echo "GEN $@"
cp $| $@
sxiv: $(OBJ)
@echo "LINK $@"
2017-09-11 17:09:26 +02:00
$(CC) $(LDFLAGS) -o $@ $^ $(LDLIBS)
2011-01-17 14:57:59 +01:00
clean:
rm -f $(OBJ) $(DEP) sxiv
install: all
@echo "INSTALL bin/sxiv"
2013-01-10 19:11:57 +01:00
mkdir -p $(DESTDIR)$(PREFIX)/bin
cp sxiv $(DESTDIR)$(PREFIX)/bin/
chmod 755 $(DESTDIR)$(PREFIX)/bin/sxiv
@echo "INSTALL sxiv.1"
2013-01-10 19:11:57 +01:00
mkdir -p $(DESTDIR)$(MANPREFIX)/man1
sed "s!PREFIX!$(PREFIX)!g; s!VERSION!$(VERSION)!g" sxiv.1 > $(DESTDIR)$(MANPREFIX)/man1/sxiv.1
2013-01-10 19:11:57 +01:00
chmod 644 $(DESTDIR)$(MANPREFIX)/man1/sxiv.1
@echo "INSTALL share/sxiv/"
mkdir -p $(DESTDIR)$(PREFIX)/share/sxiv/exec
cp exec/* $(DESTDIR)$(PREFIX)/share/sxiv/exec/
chmod 755 $(DESTDIR)$(PREFIX)/share/sxiv/exec/*
uninstall:
@echo "REMOVE bin/sxiv"
2013-01-10 19:11:57 +01:00
rm -f $(DESTDIR)$(PREFIX)/bin/sxiv
@echo "REMOVE sxiv.1"
2013-01-10 19:11:57 +01:00
rm -f $(DESTDIR)$(MANPREFIX)/man1/sxiv.1
@echo "REMOVE share/sxiv/"
rm -rf $(DESTDIR)$(PREFIX)/share/sxiv
.PHONY: all clean install uninstall
.SUFFIXES:
$(V).SILENT:
-include $(DEP)