/[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 884 by schoenebeck, Wed Jun 28 19:30:15 2006 UTC revision 1931 by persson, Sat Jul 4 14:58:34 2009 UTC
# Line 15  EXTRA_DIST = Doxyfile.in \ Line 15  EXTRA_DIST = Doxyfile.in \
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 $@

Legend:
Removed from v.884  
changed lines
  Added in v.1931

  ViewVC Help
Powered by ViewVC