From 96871c66201b77fddf5b80106b8f136fe825df87 Mon Sep 17 00:00:00 2001 From: William Hubbs Date: Fri, 1 Aug 2008 22:11:53 -0500 Subject: [PATCH] added destdir and prefix to the makefile for packaging. --- Makefile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 5e3b7cc..6c42f29 100644 --- a/Makefile +++ b/Makefile @@ -1,3 +1,5 @@ +PREFIX = /usr + LDLIBS = -lespeak PROGRAM = espeakup @@ -8,5 +10,5 @@ clean: rm $(PROGRAM) install: $(PROGRAM) - install -m 0755 $(PROGRAM) $(DESTDIR)/usr/bin + install -m 0755 $(PROGRAM) $(DESTDIR)$(PREFIX)/bin