command-line utility to translate between Mackie HUI and Open Sound Control
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

4 年之前
4 年之前
1234567891011121314
  1. CC = gcc
  2. exe = housic
  3. src = $(wildcard *.c)
  4. obj = $(src:.c=.o)
  5. LDFLAGS = -lasound -llo -lpthread
  6. $(exe): $(obj)
  7. $(CC) -o $@ $^ $(LDFLAGS)
  8. .PHONY: clean
  9. clean:
  10. rm -f $(obj) $(exe)