nsxiv/Makefile

34 lines
597 B
Makefile
Raw Normal View History

2011-01-17 13:57:59 +00:00
all: sxiv
2011-02-26 21:28:06 +00:00
VERSION=0.7
2011-01-23 16:27:44 +00:00
2011-01-17 13:57:59 +00:00
CC?=gcc
PREFIX?=/usr/local
2011-02-21 15:49:34 +00:00
CFLAGS+= -Wall -pedantic -DVERSION=\"$(VERSION)\"
2011-01-17 13:57:59 +00:00
LDFLAGS+=
2011-02-17 10:04:58 +00:00
LIBS+= -lX11 -lImlib2
2011-01-17 13:57:59 +00:00
SRCFILES=$(wildcard *.c)
OBJFILES=$(SRCFILES:.c=.o)
2011-01-17 15:18:47 +00:00
sxiv: $(OBJFILES)
2011-01-17 13:57:59 +00:00
$(CC) $(LDFLAGS) -o $@ $^ $(LIBS)
%.o: %.c Makefile config.h
2011-01-17 13:57:59 +00:00
$(CC) $(CFLAGS) -c -o $@ $<
install: all
install -D -m 755 -o root -g root sxiv $(PREFIX)/bin/sxiv
2011-01-23 17:20:08 +00:00
mkdir -p $(PREFIX)/share/man/man1
2011-01-23 17:24:48 +00:00
sed "s/VERSION/$(VERSION)/g" sxiv.1 > $(PREFIX)/share/man/man1/sxiv.1
2011-01-23 17:20:08 +00:00
chmod 644 $(PREFIX)/share/man/man1/sxiv.1
2011-01-17 13:57:59 +00:00
clean:
rm -f sxiv *.o
tags: *.h *.c
ctags $^
cscope: *.h *.c
cscope -b