nsxiv/Makefile

56 lines
1.4 KiB
Makefile
Raw Normal View History

2012-12-20 08:57:36 +00:00
VERSION = git-20121220
PREFIX = /usr/local
MANPREFIX = $(PREFIX)/share/man
2011-01-17 13:57:59 +00:00
2012-05-13 20:39:36 +01:00
CC = gcc
2012-12-27 15:34:51 +00:00
CFLAGS = -Wall -pedantic -O2 -I$(PREFIX)
2012-05-13 20:39:36 +01: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 19:10:28 +01:00
OBJ = $(SRC:.c=.o)
2011-01-17 13:57:59 +00:00
all: options sxiv
2011-01-17 13:57:59 +00: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 13:57:59 +00: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 20:39:36 +01: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