|
|
@@ -2,19 +2,12 @@ |
|
|
|
|
|
|
|
Timeline_VERSION := 0.5.0 |
|
|
|
|
|
|
|
# always regenerate source list when running under git |
|
|
|
FOO := $(shell [ -f .git ] && [ -x `which git` ] && rm -f FL/.sources ) |
|
|
|
|
|
|
|
Timeline/.sources: |
|
|
|
@ echo "Timeline_SRCS=\\" > Timeline/.sources |
|
|
|
@ git ls-files 'Timeline/*.C' | tr '\n' ' ' >> Timeline/.sources |
|
|
|
@ git ls-files 'Timeline/*.fl' | tr '\n' ' ' >> Timeline/.sources |
|
|
|
|
|
|
|
-include Timeline/.sources |
|
|
|
Timeline_SRCS := $(wildcard Timeline/*.C Timeline/*.fl Timeline/Engine/*.C) |
|
|
|
|
|
|
|
Timeline_SRCS += util/debug.C |
|
|
|
|
|
|
|
Timeline_SRCS:=$(Timeline_SRCS:.fl=.C) |
|
|
|
Timeline_SRCS:=$(sort $(Timeline_SRCS)) |
|
|
|
Timeline_OBJS:=$(Timeline_SRCS:.C=.o) |
|
|
|
|
|
|
|
Timeline_LIBS := $(FLTK_LIBS) $(JACK_LIBS) $(SNDFILE_LIBS) $(LASH_LIBS) |
|
|
|