summaryrefslogtreecommitdiff
path: root/Makefile
blob: 391f86e21e7534d21ccfbb33a34d3d3324836a4f (plain)
1
2
3
4
5
6
7
8
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)