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.

23 lines
424B

  1. # -*- mode: makefile; -*-
  2. FL/.sources:
  3. @ echo "FL_SRCS=\\" > FL/.sources
  4. @ git ls-files 'FL/*.C' | tr '\n' ' ' >> FL/.sources
  5. @ git ls-files 'FL/*.fl' | tr '\n' ' ' >> FL/.sources
  6. include FL/.sources
  7. FL_SRCS:=$(FL_SRCS:.fl=.C)
  8. FL_OBJS:=$(FL_SRCS:.C=.o)
  9. all: FL/libfl_widgets.a
  10. FL/libfl_widgets.a: $(FL_OBJS)
  11. @ ar rcs $@ $(FL_OBJS)
  12. .PHONEY: FL
  13. FL: FL/libfl_widgets.a
  14. FL_clean:
  15. rm -f $(FL_OBJS) FL/libfl_widgets.a