From 38a3be4a3eeacec75a534fef6951b9484b4d7098 Mon Sep 17 00:00:00 2001 From: Joursoir Date: Wed, 28 Oct 2020 14:12:54 +0000 Subject: feature: copy password to clipboard --- Makefile | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index d4520b3..5122e69 100755 --- a/Makefile +++ b/Makefile @@ -3,6 +3,7 @@ CC = gcc CFLAGS = -Wall -g SOURCES = easydir.c handerror.c implementation.c main.c OBJECTS = $(SOURCES:.c=.o) +BASH = lpass_copy.sh EXECUTABLE = lpass .PHONY: all clean install uninstall @@ -19,10 +20,13 @@ $(EXECUTABLE): $(OBJECTS) @$(CC) $(CFLAGS) -o $(EXECUTABLE) $(OBJECTS) install: all - @echo installing file to $(PREFIX) + @echo installing files to $(PREFIX) @install $(EXECUTABLE) $(PREFIX) @chmod 755 $(PREFIX)/$(EXECUTABLE) + @install $(BASH) $(PREFIX) + @chmod 755 $(PREFIX)/$(BASH) uninstall: - @echo removing file from $(PREFIX) - @rm -rf $(PREFIX)/$(EXECUTABLE) \ No newline at end of file + @echo removing files from $(PREFIX) + @rm -rf $(PREFIX)/$(EXECUTABLE) + @rm -rf $(PREFIX)/$(BASH) \ No newline at end of file -- cgit v1.2.3-18-g5258