aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSpencer Williams <spnw@plexwave.org>2023-07-27 19:14:54 -0400
committerSpencer Williams <spnw@plexwave.org>2023-07-27 19:14:54 -0400
commitfbe4bf84f66276d66a81221e91637df12c0dc3f2 (patch)
tree255607ebce8324a80518f504de80cb90e5246872
parentb52ea8be231f9fe9bd783567529565ee74a0d0b1 (diff)
Ensure BINDIR exists when installingv0.1
-rw-r--r--Makefile1
1 files changed, 1 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index d8fab07..59dcb5e 100644
--- a/Makefile
+++ b/Makefile
@@ -7,6 +7,7 @@ $(TARGET): mpc-bar.m
$(CC) $(OBJCFLAGS) $< $(LDFLAGS) -o $@
install: $(TARGET)
+ install -d $(BINDIR)
install -m755 $< $(BINDIR)/$<
clean: