non/Makefile

41 lines
739 B
Makefile
Raw Normal View History

2008-02-14 06:47:12 +01:00
2008-02-17 00:28:48 +01:00
CXXFLAGS=-ggdb -Wall -O0
2008-02-14 06:47:12 +01:00
#LIBS=-L/usr/lib/sox -I/usr/include/sox -lsox -lsfx
LIBS=-lsndfile `fltk-config --ldflags`
2008-02-14 06:47:12 +01:00
# CXXFLAGS=`fltk-config -cxxflags`
SRCS= Clip.C Waveform.C Region.C Peaks.C main.C Track.C
2008-02-17 00:28:48 +01:00
OBJS=$(SRCS:.C=.o)
.PHONEY: all clean install dist valgrind
all: test makedepend
2008-02-14 06:47:12 +01:00
.C.o:
2008-02-17 00:28:48 +01:00
@ echo -n "Compiling: "; tput bold; tput setaf 3; echo $<; tput sgr0; true
@ $(CXX) $(CXXFLAGS) -c $< -o $@
$(OBJS): Makefile
2008-02-14 06:47:12 +01:00
2008-02-14 08:40:47 +01:00
test: $(OBJS)
2008-02-14 06:47:12 +01:00
$(CXX) $(CXXFLAGS) $(LIBS) $(OBJS) -o $@
clean:
rm -f $(OBJS) test
valgrind:
valgrind ./test
2008-02-17 00:28:48 +01:00
TAGS: $(SRCS)
etags $(SRCS)
makedepend: $(SRCS)
@ echo -n Checking dependencies...
@ makedepend -f- -- $(CXXFLAGS) -- $(SRCS) > makedepend 2>/dev/null && echo done.
include makedepend