From a6d63abebd3c2216aa182041af91d2ddab72b82d Mon Sep 17 00:00:00 2001 From: Dave Reisner Date: Thu, 10 May 2012 23:07:30 -0400 Subject: add install target --- Makefile | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 27fce16..47ae23c 100644 --- a/Makefile +++ b/Makefile @@ -1,8 +1,11 @@ - CFLAGS := -Wall -Wextra -pedantic -O2 $(CFLAGS) LDFLAGS := -lpulse -lm $(LDFLAGS) pulsemix: pulsemix.o +install: pulsemix + mkdir $(DESTDIR)/usr/bin + install -m755 pulsemix $(DESTDIR)/usr/bin/pulsemix + clean: $(RM) pulsemix pulsemix.o -- cgit v1.2.3