diff options
author | Spencer Williams <spnw@plexwave.org> | 2023-07-27 19:14:54 -0400 |
---|---|---|
committer | Spencer Williams <spnw@plexwave.org> | 2023-07-27 19:14:54 -0400 |
commit | fbe4bf84f66276d66a81221e91637df12c0dc3f2 (patch) | |
tree | 255607ebce8324a80518f504de80cb90e5246872 | |
parent | b52ea8be231f9fe9bd783567529565ee74a0d0b1 (diff) |
Ensure BINDIR exists when installingv0.1
-rw-r--r-- | Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -7,6 +7,7 @@ $(TARGET): mpc-bar.m $(CC) $(OBJCFLAGS) $< $(LDFLAGS) -o $@ install: $(TARGET) + install -d $(BINDIR) install -m755 $< $(BINDIR)/$< clean: |