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.

17 lines
238B

  1. CXXFLAGS=-ggdb
  2. LIBS=`fltk-config --ldflags`
  3. # CXXFLAGS=`fltk-config -cxxflags`
  4. OBJS=Waveform.o Region.o main.o
  5. .C.o:
  6. $(CXX) $(CXXFLAGS) -c $< -o $@
  7. test: $(OBJS)
  8. $(CXX) $(CXXFLAGS) $(LIBS) $(OBJS) -o $@
  9. clean:
  10. rm -f $(OBJS) test