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.

28 lines
357B

  1. SRCS= \
  2. Fl_Scalepack.C \
  3. Fl_Arc_Dial.C \
  4. Boxtypes.C \
  5. OBJS := $(SRCS:.C=.o)
  6. INCLUDES=-I..
  7. all: libfl_widgets.a
  8. $(OBJS): Makefile
  9. include ../make.inc
  10. libfl_widgets.a: $(OBJS)
  11. ar rcs $@ $(OBJS)
  12. # $(CXX) -static $(CXXFLAGS) $(LIBS) $(OBJS) -o $@
  13. clean:
  14. rm -f $(OBJS) mixer makedepend
  15. valgrind:
  16. valgrind ./test
  17. include makedepend