nsxiv/Makefile

41 lines
889 B
Makefile
Raw Normal View History

VERSION = git-20130112
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
CFLAGS = -Wall -pedantic -O2 -I$(PREFIX)/include -DHAVE_GIFLIB
LDFLAGS = -L$(PREFIX)/lib
2012-05-13 20:39:36 +01:00
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
2013-01-10 18:11:57 +00:00
all: sxiv
2011-01-17 13:57:59 +00:00
2013-01-10 18:11:57 +00:00
$(OBJ): Makefile config.h
.c.o:
2013-01-10 18:11:57 +00:00
$(CC) $(CFLAGS) -DVERSION=\"$(VERSION)\" -c -o $@ $<
config.h:
2013-01-10 18:11:57 +00:00
cp config.def.h $@
sxiv: $(OBJ)
2013-01-10 18:11:57 +00:00
$(CC) $(LDFLAGS) -o $@ $(OBJ) $(LIBS)
2011-01-17 13:57:59 +00:00
clean:
2013-01-10 18:11:57 +00:00
rm -f $(OBJ) sxiv
install: all
2013-01-10 18:11:57 +00:00
mkdir -p $(DESTDIR)$(PREFIX)/bin
cp sxiv $(DESTDIR)$(PREFIX)/bin/
chmod 755 $(DESTDIR)$(PREFIX)/bin/sxiv
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:
2013-01-10 18:11:57 +00:00
rm -f $(DESTDIR)$(PREFIX)/bin/sxiv
rm -f $(DESTDIR)$(MANPREFIX)/man1/sxiv.1