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

31 lines
672 B
Makefile
Raw Normal View History

2011-01-17 14:57:59 +01:00
all: sxiv
2011-09-06 09:11:03 +02:00
VERSION = git-20110906
2011-01-23 17:27:44 +01:00
2011-06-08 20:10:28 +02:00
CC = gcc
DESTDIR =
PREFIX = /usr/local
CFLAGS = -Wall -pedantic -O2 -DVERSION=\"$(VERSION)\" -DHAVE_GIFLIB
2011-06-08 20:10:28 +02:00
LDFLAGS =
2011-08-17 00:56:18 +02:00
LIBS = -lX11 -lImlib2 -lgif
2011-01-17 14:57:59 +01: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
2011-06-08 20:10:28 +02:00
sxiv: $(OBJ)
2011-06-28 19:18:05 +02:00
$(CC) $(LDFLAGS) -o $@ $(OBJ) $(LIBS)
2011-01-17 14:57:59 +01:00
$(OBJ): Makefile config.h
.c.o:
2011-01-17 14:57:59 +01:00
$(CC) $(CFLAGS) -c -o $@ $<
install: all
2011-05-10 09:47:24 +02:00
install -D -m 755 -o root -g root sxiv $(DESTDIR)$(PREFIX)/bin/sxiv
mkdir -p $(DESTDIR)$(PREFIX)/share/man/man1
sed "s/VERSION/$(VERSION)/g" sxiv.1 > $(DESTDIR)$(PREFIX)/share/man/man1/sxiv.1
chmod 644 $(DESTDIR)$(PREFIX)/share/man/man1/sxiv.1
2011-01-17 14:57:59 +01:00
clean:
2011-06-08 20:10:28 +02:00
rm -f $(OBJ) sxiv