From 0d8fb0368e90adf79845814527b51bf04d2577b6 Mon Sep 17 00:00:00 2001 From: James Tomasino Date: Thu, 18 Apr 2019 16:09:45 -0400 Subject: [PATCH] fixed makefile --- Makefile | 2 -- 1 file changed, 2 deletions(-) diff --git a/Makefile b/Makefile index 4eba16e..4b7bdff 100644 --- a/Makefile +++ b/Makefile @@ -9,13 +9,11 @@ install: @echo Installing the manual page to $(MANDIR)/man1 @mkdir -p $(MANDIR) @install -m 644 lssh.1 $(MANDIR) -endif uninstall: @echo Removing the executable from $(BINDIR) @rm -f $(BINDIR)/lssh @echo Removing the manual page from $(MANDIR)/man1 @rm -f $(BINDIR)/man1/lssh.1 -endif .PHONY: install uninstall