diff options
| author | Petr Sabata <psabata@redhat.com> | 2011-05-10 09:31:43 +0200 | 
|---|---|---|
| committer | Petr Sabata <psabata@redhat.com> | 2011-05-10 09:31:43 +0200 | 
| commit | f3cd56e3d361e955466ee9539fb4d0b71053fb62 (patch) | |
| tree | b535bf188f49bdb9fdd4f0972aba16c2ee9a8ece /Makefile | |
| parent | fdafbf72b7eeb8c2395204aaf4ebd9931cf47436 (diff) | |
Support DESTDIR
GNU coding standard recommends supporting DESTDIR in projects Makefiles. This
is already expected by many GNU/Linux distributions. This patch adds DESTDIR
support to sxiv Makefile.
Signed-off-by: Petr Sabata <psabata@redhat.com>
Diffstat (limited to 'Makefile')
| -rw-r--r-- | Makefile | 9 | 
1 files changed, 5 insertions, 4 deletions
@@ -3,6 +3,7 @@ all: sxiv  VERSION=0.8.1  CC?=gcc +DESTDIR?=  PREFIX?=/usr/local  CFLAGS+= -Wall -pedantic -DVERSION=\"$(VERSION)\"  LDFLAGS+=  @@ -18,10 +19,10 @@ sxiv:	$(OBJFILES)  	$(CC) $(CFLAGS) -c -o $@ $<  install: all -	install -D -m 755 -o root -g root sxiv $(PREFIX)/bin/sxiv -	mkdir -p $(PREFIX)/share/man/man1 -	sed "s/VERSION/$(VERSION)/g" sxiv.1 > $(PREFIX)/share/man/man1/sxiv.1 -	chmod 644 $(PREFIX)/share/man/man1/sxiv.1 +	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  clean:  	rm -f sxiv *.o  | 
