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

Add startup make target.

This commit is contained in:
Casey Scarborough 2013-09-17 13:34:33 -04:00
parent a9df56d78f
commit cb98dff131

View File

@ -11,11 +11,13 @@ all: $(SOURCES)
install:
mkdir -p $(INSTALLDIR)
cp $(EXECUTABLE) $(INSTALLDIR)
cp $(PLIST) /Library/LaunchDaemons
uninstall:
rm $(INSTALLDIR)/$(EXECUTABLE)
rm /Library/LaunchDaemons/$(PLIST)
startup:
cp $(PLIST) /Library/LaunchDaemons
clean:
rm $(EXECUTABLE)