From f7d95139d88c20e6dc4f29df0a0189f22526066d Mon Sep 17 00:00:00 2001 From: Florian Pritz Date: Fri, 29 Oct 2010 22:37:14 +0200 Subject: change the way we generate dist tarballs This no longer displays (git) errors if you use the release tarball. It also adds a make target for fb in order to get rid of the git checking inside fb. Signed-off-by: Florian Pritz --- Makefile | 14 ++++++++++---- 1 file changed, 10 insertions(+), 4 deletions(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index 03bf66d..7252bc2 100644 --- a/Makefile +++ b/Makefile @@ -2,13 +2,18 @@ VERSION:=$(shell git describe | sed 's/^v//') MANDIR=/usr/share/man BINDIR=/usr/bin -all: fb.1 +all: fb.1 fb + +fb: fb.in + @[ -n "$(VERSION)" ] || (echo "Error: version detection failed"; exit 1) + sed 's/@VERSION@/$(VERSION)/' fb.in > fb + chmod 755 fb fb.1: fb.pod pod2man -c "" fb.pod fb.1 clean: - rm -f fb.1 + rm -f fb.1 fb rm -rf dist install: all @@ -20,9 +25,10 @@ uninstall: rm -f $(DESTDIR)$(MANDIR)/man1/fb.1 dist: all + @[ -n "$(VERSION)" ] || (echo "Error: version detection failed"; exit 1) mkdir -p dist/fb-$(VERSION) - cp -a fb fb.pod fb.1 COPYING Makefile dist/fb-$(VERSION) - sed -i 's/^VERSION=.*$$/VERSION="'$(VERSION)'"/' dist/fb-$(VERSION)/fb + cp -a fb fb.in fb.pod fb.1 COPYING Makefile dist/fb-$(VERSION) + sed -i 's/^VERSION:=.*$$/VERSION:="'$(VERSION)'"/' dist/fb-$(VERSION)/Makefile cd dist; tar -czf fb-$(VERSION).tar.gz fb-$(VERSION) version: -- cgit v1.2.3-24-g4f1b