/[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 1187 by iliev, Wed May 16 14:22:26 2007 UTC revision 2581 by schoenebeck, Fri May 30 12:48:05 2014 UTC
# Line 21  else Line 21  else
21  have_sqlite = "no"  have_sqlite = "no"
22  endif  endif
23    
24    if !CROSS_COMPILING
25  install-data-local:  install-data-local:
26          @if [ ! -e "/var/lib/linuxsampler/instruments.db" -a \          @if [ ! -e "$(DESTDIR)/var/lib/linuxsampler/instruments.db" -a \
27          $(have_sqlite) = "yes" ] ; then \          $(have_sqlite) = "yes" ] ; then \
28          mkdir -p /var/lib/linuxsampler && ./src/linuxsampler \          echo "****************************************************************"; \
29          --create-instruments-db /var/lib/linuxsampler/instruments.db ; \          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          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.1187  
changed lines
  Added in v.2581

  ViewVC Help
Powered by ViewVC