From cb98dff131ece51a21e42e3ec28e38d076840169 Mon Sep 17 00:00:00 2001 From: Casey Scarborough Date: Tue, 17 Sep 2013 13:34:33 -0400 Subject: [PATCH] Add startup make target. --- Makefile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 8fb3a80..2168b9f 100644 --- a/Makefile +++ b/Makefile @@ -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) \ No newline at end of file