non/Engine/Makefile

32 lines
444 B
Makefile
Raw Normal View History

2008-03-25 08:08:13 +01:00
SRCS= \
Server.C \
2008-03-25 22:17:24 +01:00
Peak_Server.C \
2008-03-25 08:08:13 +01:00
Timeline_Server.C \
main.C \
Audio_File.C \
Audio_File_SF.C \
Peaks.C \
Loggable.C \
OBJS=$(SRCS:.C=.o)
.PHONEY: all clean install dist valgrind
all: engine
$(OBJS): Makefile
include ../make.inc
engine: $(OBJS)
$(CXX) $(CXXFLAGS) $(INCLUDES) $(LIBS) $(OBJS) -o $@
clean:
rm -f $(OBJS) engine makedepend
valgrind:
valgrind ./test
include makedepend