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

56 lines
1.4 KiB
Makefile
Raw Normal View History

VERSION = git-20130104
PREFIX = /usr/local
MANPREFIX = $(PREFIX)/share/man
2011-01-17 14:57:59 +01:00
2012-05-13 21:39:36 +02:00
CC = gcc
CFLAGS = -Wall -pedantic -O2 -I$(PREFIX) -DHAVE_GIFLIB
2012-05-13 21:39:36 +02:00
LDFLAGS = -L$(PREFIX)
LIBS = -lX11 -lImlib2 -lgif
SRC = commands.c exif.c image.c main.c options.c thumbs.c util.c window.c
2011-06-08 20:10:28 +02:00
OBJ = $(SRC:.c=.o)
2011-01-17 14:57:59 +01:00
all: options sxiv
2011-01-17 14:57:59 +01:00
options:
@echo "sxiv build options:"
@echo "CC = $(CC)"
@echo "CFLAGS = $(CFLAGS)"
@echo "LDFLAGS = $(LDFLAGS)"
@echo "PREFIX = $(PREFIX)"
.c.o:
@echo "CC $<"
@$(CC) $(CFLAGS) -DVERSION=\"$(VERSION)\" -c -o $@ $<
$(OBJ): Makefile config.h
config.h:
@echo "creating $@ from config.def.h"
@cp config.def.h $@
sxiv: $(OBJ)
@echo "CC -o $@"
@$(CC) $(LDFLAGS) -o $@ $(OBJ) $(LIBS)
2011-01-17 14:57:59 +01:00
clean:
@echo "cleaning"
@rm -f $(OBJ) sxiv sxiv-$(VERSION).tar.gz
install: all
@echo "installing executable file to $(DESTDIR)$(PREFIX)/bin"
2012-05-13 21:39:36 +02:00
@mkdir -p $(DESTDIR)$(PREFIX)/bin
@cp -f sxiv $(DESTDIR)$(PREFIX)/bin/
@chmod 755 $(DESTDIR)$(PREFIX)/bin/sxiv
@echo "installing manual page to $(DESTDIR)$(MANPREFIX)/man1"
@mkdir -p $(DESTDIR)$(MANPREFIX)/man1
@sed "s/VERSION/$(VERSION)/g" sxiv.1 > $(DESTDIR)$(MANPREFIX)/man1/sxiv.1
@chmod 644 $(DESTDIR)$(MANPREFIX)/man1/sxiv.1
uninstall:
@echo "removing executable file from $(DESTDIR)$(PREFIX)/bin"
@rm -f $(DESTDIR)$(PREFIX)/bin/sxiv
@echo "removing manual page from $(DESTDIR)$(MANPREFIX)/man1"
@rm -f $(DESTDIR)$(MANPREFIX)/man1/sxiv.1