From 9d124728dc25e15aa9dd74ff93923d3da40c0d4a Mon Sep 17 00:00:00 2001 From: Henry Wildermuth Date: Thu, 22 Dec 2016 11:43:03 -0500 Subject: [PATCH] Add requirements for makefile rules --- Makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Makefile b/Makefile index 029f46f..308cf89 100644 --- a/Makefile +++ b/Makefile @@ -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,8 +16,8 @@ uninstall: rm $(INSTALLDIR)/$(EXECUTABLE) rm /Library/LaunchDaemons/$(PLIST) -startup: +startup: install cp $(PLIST) /Library/LaunchDaemons clean: - rm $(EXECUTABLE) \ No newline at end of file + rm $(EXECUTABLE)