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.
|
-
- SRCS= \
- Waveform.C \
- Region.C \
- main.C \
- Track.C \
- Audio_Track.C \
- Timeline.C \
- Track_Header.C \
- Track_Widget.C \
- Peak_Client.C \
- ../Engine/Loggable.C \
-
- OBJS=$(SRCS:.C=.o)
-
- INCLUDES=-I../Engine -I../FL
-
- .PHONEY: all clean install dist valgrind
-
- all: timeline
-
- $(OBJS): Makefile
-
- include ../make.inc
-
- timeline: $(OBJS)
- $(CXX) $(CXXFLAGS) $(INCLUDES) $(LIBS) $(OBJS) -o $@
-
- clean:
- rm -f $(OBJS) timeline makedepend
-
- valgrind:
- valgrind ./test
-
- include makedepend
|