diff options
author | Bert <ber.t@gmx.com> | 2011-05-10 09:47:24 +0200 |
---|---|---|
committer | Bert <ber.t@gmx.com> | 2011-05-10 09:47:24 +0200 |
commit | 1763e9f2537d4ca3cf8a614fad8a606db69da6ea (patch) | |
tree | 2e7d1b7183de9441f0588a70cac1905b83a88395 /Makefile | |
parent | f3cd56e3d361e955466ee9539fb4d0b71053fb62 (diff) |
Unstable version number in Makefile
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 10 |
1 files changed, 5 insertions, 5 deletions
@@ -1,6 +1,6 @@ all: sxiv -VERSION=0.8.1 +VERSION=git-20110510 CC?=gcc DESTDIR?= @@ -19,10 +19,10 @@ sxiv: $(OBJFILES) $(CC) $(CFLAGS) -c -o $@ $< install: all - 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 + 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 |