Assists music production by grouping standalone programs into sessions. Community version of "Non Session Manager".
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.

25 lines
437B

  1. # -*- mode: makefile; -*-
  2. VERSION := 1.1.0
  3. PACKAGE := NONLIB
  4. SRCS := $(wildcard nonlib/*.C nonlib/JACK/*.C nonlib/LASH/*.C nonlib/OSC/*.C nonlib/NSM/*.C)
  5. SRCS:=$(sort $(SRCS))
  6. OBJS:=$(SRCS:.C=.o)
  7. CFLAGS := $(SIGCPP_CFLAGS) $(LIBLO_CFLAGS) $(JACK_CFLAGS)
  8. all: nonlib/libnonlib.a
  9. nonlib/libnonlib.a: $(OBJS)
  10. @ ar rcs $@ $(OBJS)
  11. .PHONEY: nonlib
  12. nonlib: nonlib/libnonlib.a
  13. clean:
  14. rm -f $(OBJS) nonlib/libnonlib.a .deps
  15. install:
  16. @