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.

21 lines
321B

  1. # -*- mode: makefile; -*-
  2. all: FL
  3. FL_SRCS := $(wildcard FL/*.C FL/*.fl)
  4. FL_SRCS:=$(FL_SRCS:.fl=.C)
  5. FL_SRCS:=$(sort $(FL_SRCS))
  6. FL_OBJS:=$(FL_SRCS:.C=.o)
  7. all: FL/libfl_widgets.a
  8. FL/libfl_widgets.a: $(FL_OBJS)
  9. @ ar rcs $@ $(FL_OBJS)
  10. .PHONEY: FL
  11. FL: FL/libfl_widgets.a
  12. FL_clean:
  13. rm -f $(FL_OBJS) FL/libfl_widgets.a