41 lines
750 B
Makefile
41 lines
750 B
Makefile
|
|
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 Track.C Timeline.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
|