1
0
mirror of https://github.com/caseyscarborough/keylogger.git synced 2020-11-18 19:53:40 -08:00

Merge pull request #15 from hmwildermuth/patch-1

Add requirements for makefile rules
This commit is contained in:
Casey Scarborough 2018-02-19 17:46:35 -05:00 committed by GitHub
commit 0d1600a9dd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -8,7 +8,7 @@ INSTALLDIR=/usr/local/bin
all: $(SOURCES)
$(CC) $(SOURCES) $(CFLAGS) -o $(EXECUTABLE)
install:
install: all
mkdir -p $(INSTALLDIR)
cp $(EXECUTABLE) $(INSTALLDIR)
@ -16,7 +16,7 @@ uninstall:
rm $(INSTALLDIR)/$(EXECUTABLE)
rm /Library/LaunchDaemons/$(PLIST)
startup:
startup: install
cp $(PLIST) /Library/LaunchDaemons
clean: