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

46 lines
1.1 KiB
Makefile
Raw Normal View History

VERSION = git-20141001
PREFIX = /usr/local
MANPREFIX = $(PREFIX)/share/man
2011-01-17 14:57:59 +01:00
CC = gcc
CFLAGS = -std=c99 -Wall -pedantic -O2
CPPFLAGS = -I$(PREFIX)/include -D_XOPEN_SOURCE=500 -DHAVE_LIBEXIF -DHAVE_GIFLIB
LDFLAGS = -L$(PREFIX)/lib
LIBS = -lX11 -lImlib2 -lexif -lgif
2012-05-13 21:39:36 +02:00
SRC = commands.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
2013-01-10 19:11:57 +01:00
all: sxiv
2011-01-17 14:57:59 +01:00
2013-01-10 19:11:57 +01:00
$(OBJ): Makefile config.h
.c.o:
$(CC) $(CFLAGS) $(CPPFLAGS) -DVERSION=\"$(VERSION)\" -c -o $@ $<
config.h:
2013-01-10 19:11:57 +01:00
cp config.def.h $@
sxiv: $(OBJ)
2013-01-10 19:11:57 +01:00
$(CC) $(LDFLAGS) -o $@ $(OBJ) $(LIBS)
2011-01-17 14:57:59 +01:00
clean:
2013-01-10 19:11:57 +01:00
rm -f $(OBJ) sxiv
install: all
2013-01-10 19:11:57 +01:00
mkdir -p $(DESTDIR)$(PREFIX)/bin
cp sxiv $(DESTDIR)$(PREFIX)/bin/
chmod 755 $(DESTDIR)$(PREFIX)/bin/sxiv
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
mkdir -p $(DESTDIR)$(PREFIX)/share/sxiv/exec
cp exec/* $(DESTDIR)$(PREFIX)/share/sxiv/exec/
chmod 755 $(DESTDIR)$(PREFIX)/share/sxiv/exec/*
uninstall:
2013-01-10 19:11:57 +01:00
rm -f $(DESTDIR)$(PREFIX)/bin/sxiv
rm -f $(DESTDIR)$(MANPREFIX)/man1/sxiv.1
rm -rf $(DESTDIR)$(PREFIX)/share/sxiv