commit b52ea8be231f9fe9bd783567529565ee74a0d0b1
parent 31193ae219dbc8295f8340dacc71be263b35cb8c
Author: Spencer Williams <spnw@plexwave.org>
Date: Thu, 27 Jul 2023 18:58:09 -0400
Add "make install" rule
Diffstat:
1 file changed, 4 insertions(+), 0 deletions(-)
diff --git a/Makefile b/Makefile
@@ -1,9 +1,13 @@
TARGET = mpc-bar
OBJCFLAGS = -O2 -fobjc-arc -Wall
LDFLAGS = -lmpdclient -framework Cocoa
+BINDIR = /usr/local/bin
$(TARGET): mpc-bar.m
$(CC) $(OBJCFLAGS) $< $(LDFLAGS) -o $@
+install: $(TARGET)
+ install -m755 $< $(BINDIR)/$<
+
clean:
rm -f $(TARGET)