diff options
-rw-r--r-- | Makefile | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -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 |