/[svn]/linuxsampler/trunk/Makefile.am
ViewVC logotype

Diff of /linuxsampler/trunk/Makefile.am

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 697 by schoenebeck, Tue Jul 19 15:43:40 2005 UTC revision 2581 by schoenebeck, Fri May 30 12:48:05 2014 UTC
# Line 6  SUBDIRS = man src scripts osx Artwork Do Line 6  SUBDIRS = man src scripts osx Artwork Do
6  pkgconfigdir = $(libdir)/pkgconfig  pkgconfigdir = $(libdir)/pkgconfig
7  pkgconfig_DATA = linuxsampler.pc  pkgconfig_DATA = linuxsampler.pc
8    
9  EXTRA_DIST = Doxyfile linuxsampler.kdevelop  EXTRA_DIST = Doxyfile.in \
10                 linuxsampler.pc.in \
11                 linuxsampler.kdevelop \
12                 benchmarks/gigsynth.cpp \
13                 benchmarks/Makefile \
14                 benchmarks/triang.cpp
15    
16  .PHONY: parser testcases  .PHONY: parser testcases
17    
18    if HAVE_SQLITE3
19    have_sqlite = "yes"
20    else
21    have_sqlite = "no"
22    endif
23    
24    if !CROSS_COMPILING
25    install-data-local:
26            @if [ ! -e "$(DESTDIR)/var/lib/linuxsampler/instruments.db" -a \
27            $(have_sqlite) = "yes" ] ; then \
28            echo "****************************************************************"; \
29            echo "*** LinuxSampler was compiled with instruments DB support and"; \
30            echo "*** $(DESTDIR)/var/lib/linuxsampler/instruments.db"; \
31            echo "*** doesn't exist yet, creating it now:"; \
32            mkdir -p $(DESTDIR)/var/lib/linuxsampler && ./src/linuxsampler \
33            --create-instruments-db $(DESTDIR)/var/lib/linuxsampler/instruments.db ; \
34            fi
35    endif
36    
37  # generate parser with yacc  # generate parser with yacc
38  parser:  parser:
39          @cd $(srcdir)/src/network && make $@          @cd $(srcdir)/src/network && make $@
40            @cd $(srcdir)/src/scriptvm && make $@
41    
42  # compile test cases for the LinuxSampler codebase  # compile test cases for the LinuxSampler codebase
43  testcases:  testcases:

Legend:
Removed from v.697  
changed lines
  Added in v.2581

  ViewVC Help
Powered by ViewVC