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.
|
-
- CXXFLAGS=-ggdb -Wall -O0
-
- #LIBS=-L/usr/lib/sox -I/usr/include/sox -lsox -lsfx
- LIBS=-lsndfile `fltk-config --ldflags`
- # CXXFLAGS=`fltk-config -cxxflags`
-
- SRCS= Clip.C Waveform.C Region.C Peaks.C main.C
-
- OBJS=$(SRCS:.C=.o)
-
- .PHONEY: all clean install dist valgrind
-
- all: test makedepend
-
- .C.o:
- @ echo -n "Compiling: "; tput bold; tput setaf 3; echo $<; tput sgr0; true
- @ $(CXX) $(CXXFLAGS) -c $< -o $@
-
- $(OBJS): Makefile
-
-
- test: $(OBJS)
- $(CXX) $(CXXFLAGS) $(LIBS) $(OBJS) -o $@
-
- clean:
- rm -f $(OBJS) test
-
- valgrind:
- valgrind ./test
-
- TAGS: $(SRCS)
- etags $(SRCS)
-
- makedepend: $(SRCS)
- @ echo -n Checking dependencies...
- @ makedepend -f- -- $(CXXFLAGS) -- $(SRCS) > makedepend 2>/dev/null && echo done.
-
-
- include makedepend
|