Non reinvents the DAW. Powerful enough to form a complete studio, fast and light enough to run on low-end hardware like the eeePC or Raspberry Pi, and so reliable that it can be used live https://non.tuxfamily.org/
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.

38 lines
771B

  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 util/ntk-perf
  10. FL/libfl_widgets.a: $(OBJS)
  11. @ ar rcs $@ $(OBJS)
  12. .PHONEY: FL
  13. FL: FL/libfl_widgets.a
  14. # ntk-chtheme: ntk-chtheme.o $(FLTK_LIBS) FL/libfl_widgets.a
  15. # @ echo -n Linking session handler.
  16. # @ $(CXX) $(CXXFLAGS) $(FLTK_LDFLAGS) $(LIBS) $^ -o $@ -LFL -lfl_widgets && echo $(DONE)
  17. util/ntk-perf.o: util/ntk-perf.C
  18. util/ntk-perf: util/ntk-perf.o $(FLTK_LIBS) FL/libfl_widgets.a
  19. @ echo -n Linking session handler.
  20. @ $(CXX) $(CXXFLAGS) $^ -o $@ $(FLTK_LDFLAGS) $(LIBS) -LFL -lfl_widgets && echo $(DONE)
  21. clean:
  22. rm -f $(OBJS) FL/libfl_widgets.a .deps
  23. install:
  24. @