non/Timeline/makefile.inc

25 lines
666 B
PHP
Raw Normal View History

# -*- mode: makefile; -*-
2008-05-01 10:05:10 +02:00
all: Timeline
Timeline_VERSION := 0.5.0
2008-05-28 05:39:42 +02:00
Timeline_SRCS := $(wildcard Timeline/*.C Timeline/*.fl Timeline/Engine/*.C)
Timeline_SRCS += util/debug.C util/Thread.C util/file.C
2008-05-01 10:05:10 +02:00
Timeline_SRCS:=$(Timeline_SRCS:.fl=.C)
2008-05-28 05:39:42 +02:00
Timeline_SRCS:=$(sort $(Timeline_SRCS))
2008-05-01 10:05:10 +02:00
Timeline_OBJS:=$(Timeline_SRCS:.C=.o)
2010-01-25 03:49:28 +01:00
Timeline_LIBS := $(FLTK_LIBS) $(JACK_LIBS) $(SNDFILE_LIBS)
2008-05-01 10:05:10 +02:00
Timeline/timeline: $(Timeline_OBJS) FL
2008-05-16 22:52:10 +02:00
@ echo -n Linking timeline...
@ $(CXX) $(CXXFLAGS) $(INCLUDES) $(Timeline_LIBS) $(Timeline_OBJS) -o $@ -LFL -lfl_widgets -Lnonlib -lnonlib && echo $(DONE)
2008-05-01 10:05:10 +02:00
Timeline: Timeline/timeline
Timeline_clean:
rm -f $(Timeline_OBJS) Timeline/timeline