Makefile 210 B

1234567891011121314
  1. PROG:= mpcinputd
  2. PREFIX?= /usr/local
  3. all: $(PROG)
  4. $(PROG): $(PROG).c
  5. cc -o $(PROG) $(PROG).c $(LIBS)
  6. install: $(PROG)
  7. install -o root -g wheel -m 755 $(PROG) $(PREFIX)/sbin/$(PROG)
  8. clean:
  9. rm -f $(PROG)