From d9c21e6fcdfc804998bedd7aa1afdf39792079b4 Mon Sep 17 00:00:00 2001 From: Spencer Williams Date: Mon, 24 Jul 2023 15:25:08 -0400 Subject: Initial commit --- Makefile | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 Makefile (limited to 'Makefile') diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..391f86e --- /dev/null +++ b/Makefile @@ -0,0 +1,9 @@ +TARGET = mpc-bar +OBJCFLAGS = -O2 -fobjc-arc -Wall +LDFLAGS = -lmpdclient -framework Cocoa + +$(TARGET): mpc-bar.m + $(CC) $(OBJCFLAGS) $< $(LDFLAGS) -o $@ + +clean: + rm -f $(TARGET) -- cgit v1.2.3