diff options
author | Spencer Williams <spnw@plexwave.org> | 2023-07-24 15:25:08 -0400 |
---|---|---|
committer | Spencer Williams <spnw@plexwave.org> | 2023-07-24 15:25:08 -0400 |
commit | d9c21e6fcdfc804998bedd7aa1afdf39792079b4 (patch) | |
tree | b6b889ebd319d8af2a1a63ad46fb5c003507545c /Makefile |
Initial commit
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 9 |
1 files changed, 9 insertions, 0 deletions
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) |