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.

26 lines
338B

  1. # -*- mode: makefile; -*-
  2. VERSION := 1.1.0
  3. PACKAGE := FL
  4. all: FL
  5. SRCS := $(wildcard FL/*.C FL/*.fl)
  6. SRCS:=$(SRCS:.fl=.C)
  7. SRCS:=$(sort $(SRCS))
  8. OBJS:=$(SRCS:.C=.o)
  9. all: FL/libfl_widgets.a
  10. FL/libfl_widgets.a: $(OBJS)
  11. @ ar rcs $@ $(OBJS)
  12. .PHONEY: FL
  13. FL: FL/libfl_widgets.a
  14. clean:
  15. rm -f $(OBJS) FL/libfl_widgets.a .deps
  16. install:
  17. @