PROG:= mpcinputd PREFIX?= /usr/local all: $(PROG) $(PROG): $(PROG).c cc -o $(PROG) $(PROG).c $(LIBS) install: $(PROG) install -o root -g wheel -m 755 $(PROG) $(PREFIX)/sbin/$(PROG) clean: rm -f $(PROG)