summaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorFlorian Pritz <bluewind@xinu.at>2012-01-04 15:42:12 +0100
committerFlorian Pritz <bluewind@xinu.at>2012-01-04 15:43:41 +0100
commitbcb55411af16c89a633c2e7c8e04769766a9fec7 (patch)
tree4566beeeaa32d4b76c8be464b09856ab6e24147a /Makefile
parenta604f22b6c5afd3204d2e99d78f863736a795202 (diff)
fix stat calls on non-gnu systems
Reported-by: Moritz Wilhelmy <moritz+git@wzff.de> Signed-off-by: Florian Pritz <bluewind@xinu.at>
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile3
1 files changed, 2 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 74dfb37..f91b94e 100644
--- a/Makefile
+++ b/Makefile
@@ -35,6 +35,7 @@ clean:
install: all
install -Dm755 fb $(DESTDIR)$(BINDIR)/fb
install -Dm755 fb-helper $(DESTDIR)$(MY_LIBDIR)/fb-helper
+ install -Dm755 functions $(DESTDIR)$(MY_LIBDIR)/functions
install -Dm644 fb.1 $(DESTDIR)$(MANDIR)/man1/fb.1
uninstall:
@@ -45,7 +46,7 @@ uninstall:
dist: all
@[ -n "$(VERSION)" ] || (echo "Error: version detection failed"; exit 1)
mkdir -p dist/fb-$(VERSION)
- cp -a fb-helper.c fb{,.in} fb.pod fb.1 COPYING Makefile dist/fb-$(VERSION)
+ cp -a fb-helper.c fb{,.in} fb.pod fb.1 functions 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)