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
347B

  1. # -*- mode: makefile; -*-
  2. FL_SRCS= \
  3. FL/Fl_Scalepack.C \
  4. FL/Fl_Arc_Dial.C \
  5. FL/Fl_Text_Edit_Window.C \
  6. FL/Boxtypes.C \
  7. FL_OBJS := $(FL_SRCS:.C=.o)
  8. all: FL/libfl_widgets.a
  9. # $(OBJS): Makefile
  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