/[svn]/linuxsampler/trunk/src/Makefile.in
ViewVC logotype

Diff of /linuxsampler/trunk/src/Makefile.in

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

revision 34 by schoenebeck, Sun Jan 18 20:31:31 2004 UTC revision 35 by schoenebeck, Fri Mar 5 13:46:15 2004 UTC
# Line 111  AM_CXXFLAGS = -pedantic Line 111  AM_CXXFLAGS = -pedantic
111  linuxsampler_LDFLAGS = $(all_libraries) $(JACK_LIBS)  linuxsampler_LDFLAGS = $(all_libraries) $(JACK_LIBS)
112  lib_LIBRARIES = libgig.a  lib_LIBRARIES = libgig.a
113  libgig_a_SOURCES = DLS.cpp DLS.h gig.cpp gig.h RIFF.cpp RIFF.h  libgig_a_SOURCES = DLS.cpp DLS.h gig.cpp gig.h RIFF.cpp RIFF.h
114  linuxsampler_LDADD = $(top_builddir)/src/libgig.a -lpthread -lasound  linuxsampler_LDADD = $(top_builddir)/src/network/liblscpserver.a $(top_builddir)/src/libgig.a -lpthread -lasound
115  noinst_HEADERS = modulationsystem.h eg_vca.h  noinst_HEADERS = modulationsystem.h eg_vca.h
116    SUBDIRS = network
117  subdir = src  subdir = src
118  mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs  mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs
119  CONFIG_HEADER = $(top_builddir)/config.h  CONFIG_HEADER = $(top_builddir)/config.h
# Line 132  am_linuxsampler_OBJECTS = linuxsampler.$ Line 133  am_linuxsampler_OBJECTS = linuxsampler.$
133          voice.$(OBJEXT) modulationsystem.$(OBJEXT) eg_vca.$(OBJEXT) \          voice.$(OBJEXT) modulationsystem.$(OBJEXT) eg_vca.$(OBJEXT) \
134          alsaio.$(OBJEXT) jackio.$(OBJEXT)          alsaio.$(OBJEXT) jackio.$(OBJEXT)
135  linuxsampler_OBJECTS = $(am_linuxsampler_OBJECTS)  linuxsampler_OBJECTS = $(am_linuxsampler_OBJECTS)
136  linuxsampler_DEPENDENCIES = $(top_builddir)/src/libgig.a  linuxsampler_DEPENDENCIES = $(top_builddir)/src/network/liblscpserver.a \
137            $(top_builddir)/src/libgig.a
138    
139  DEFS = @DEFS@  DEFS = @DEFS@
140  DEFAULT_INCLUDES =  -I. -I$(srcdir) -I$(top_builddir)  DEFAULT_INCLUDES =  -I. -I$(srcdir) -I$(top_builddir)
# Line 171  LINK = $(LIBTOOL) --mode=link $(CCLD) $( Line 173  LINK = $(LIBTOOL) --mode=link $(CCLD) $(
173  DIST_SOURCES = $(libgig_a_SOURCES) $(linuxsampler_SOURCES)  DIST_SOURCES = $(libgig_a_SOURCES) $(linuxsampler_SOURCES)
174  HEADERS = $(noinst_HEADERS)  HEADERS = $(noinst_HEADERS)
175    
176    
177    RECURSIVE_TARGETS = info-recursive dvi-recursive install-info-recursive \
178            uninstall-info-recursive all-recursive install-data-recursive \
179            install-exec-recursive installdirs-recursive install-recursive \
180            uninstall-recursive check-recursive installcheck-recursive
181  DIST_COMMON = $(noinst_HEADERS) Makefile.am Makefile.in  DIST_COMMON = $(noinst_HEADERS) Makefile.am Makefile.in
182    DIST_SUBDIRS = $(SUBDIRS)
183  SOURCES = $(libgig_a_SOURCES) $(linuxsampler_SOURCES)  SOURCES = $(libgig_a_SOURCES) $(linuxsampler_SOURCES)
184    
185  all: all-am  all: all-recursive
186    
187  .SUFFIXES:  .SUFFIXES:
188  .SUFFIXES: .cpp .lo .o .obj  .SUFFIXES: .cpp .lo .o .obj
# Line 305  distclean-libtool: Line 313  distclean-libtool:
313          -rm -f libtool          -rm -f libtool
314  uninstall-info-am:  uninstall-info-am:
315    
316    # This directory's subdirectories are mostly independent; you can cd
317    # into them and run `make' without going through this Makefile.
318    # To change the values of `make' variables: instead of editing Makefiles,
319    # (1) if the variable is set in `config.status', edit `config.status'
320    #     (which will cause the Makefiles to be regenerated when you run `make');
321    # (2) otherwise, pass the desired values on the `make' command line.
322    $(RECURSIVE_TARGETS):
323            @set fnord $$MAKEFLAGS; amf=$$2; \
324            dot_seen=no; \
325            target=`echo $@ | sed s/-recursive//`; \
326            list='$(SUBDIRS)'; for subdir in $$list; do \
327              echo "Making $$target in $$subdir"; \
328              if test "$$subdir" = "."; then \
329                dot_seen=yes; \
330                local_target="$$target-am"; \
331              else \
332                local_target="$$target"; \
333              fi; \
334              (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \
335               || case "$$amf" in *=*) exit 1;; *k*) fail=yes;; *) exit 1;; esac; \
336            done; \
337            if test "$$dot_seen" = "no"; then \
338              $(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \
339            fi; test -z "$$fail"
340    
341    mostlyclean-recursive clean-recursive distclean-recursive \
342    maintainer-clean-recursive:
343            @set fnord $$MAKEFLAGS; amf=$$2; \
344            dot_seen=no; \
345            case "$@" in \
346              distclean-* | maintainer-clean-*) list='$(DIST_SUBDIRS)' ;; \
347              *) list='$(SUBDIRS)' ;; \
348            esac; \
349            rev=''; for subdir in $$list; do \
350              if test "$$subdir" = "."; then :; else \
351                rev="$$subdir $$rev"; \
352              fi; \
353            done; \
354            rev="$$rev ."; \
355            target=`echo $@ | sed s/-recursive//`; \
356            for subdir in $$rev; do \
357              echo "Making $$target in $$subdir"; \
358              if test "$$subdir" = "."; then \
359                local_target="$$target-am"; \
360              else \
361                local_target="$$target"; \
362              fi; \
363              (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \
364               || case "$$amf" in *=*) exit 1;; *k*) fail=yes;; *) exit 1;; esac; \
365            done && test -z "$$fail"
366    tags-recursive:
367            list='$(SUBDIRS)'; for subdir in $$list; do \
368              test "$$subdir" = . || (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) tags); \
369            done
370    
371  ETAGS = etags  ETAGS = etags
372  ETAGSFLAGS =  ETAGSFLAGS =
373    
# Line 319  ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS Line 382  ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS
382                 END { for (i in files) print i; }'`; \                 END { for (i in files) print i; }'`; \
383          mkid -fID $$unique          mkid -fID $$unique
384    
385  TAGS:  $(HEADERS) $(SOURCES)  $(TAGS_DEPENDENCIES) \  TAGS: tags-recursive $(HEADERS) $(SOURCES)  $(TAGS_DEPENDENCIES) \
386                  $(TAGS_FILES) $(LISP)                  $(TAGS_FILES) $(LISP)
387          tags=; \          tags=; \
388          here=`pwd`; \          here=`pwd`; \
389            list='$(SUBDIRS)'; for subdir in $$list; do \
390              if test "$$subdir" = .; then :; else \
391                test -f $$subdir/TAGS && tags="$$tags -i $$here/$$subdir/TAGS"; \
392              fi; \
393            done; \
394          list='$(SOURCES) $(HEADERS)  $(LISP) $(TAGS_FILES)'; \          list='$(SOURCES) $(HEADERS)  $(LISP) $(TAGS_FILES)'; \
395          unique=`for i in $$list; do \          unique=`for i in $$list; do \
396              if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \              if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
# Line 366  distdir: $(DISTFILES) Line 434  distdir: $(DISTFILES)
434              || exit 1; \              || exit 1; \
435            fi; \            fi; \
436          done          done
437            list='$(SUBDIRS)'; for subdir in $$list; do \
438              if test "$$subdir" = .; then :; else \
439                test -d $(distdir)/$$subdir \
440                || mkdir $(distdir)/$$subdir \
441                || exit 1; \
442                (cd $$subdir && \
443                  $(MAKE) $(AM_MAKEFLAGS) \
444                    top_distdir="$(top_distdir)" \
445                    distdir=../$(distdir)/$$subdir \
446                    distdir) \
447                  || exit 1; \
448              fi; \
449            done
450  check-am: all-am  check-am: all-am
451  check: check-am  check: check-recursive
452  all-am: Makefile $(LIBRARIES) $(PROGRAMS) $(HEADERS)  all-am: Makefile $(LIBRARIES) $(PROGRAMS) $(HEADERS)
453    installdirs: installdirs-recursive
454  installdirs:  installdirs-am:
455          $(mkinstalldirs) $(DESTDIR)$(libdir) $(DESTDIR)$(bindir)          $(mkinstalldirs) $(DESTDIR)$(libdir) $(DESTDIR)$(bindir)
456    
457  install: install-am  install: install-recursive
458  install-exec: install-exec-am  install-exec: install-exec-recursive
459  install-data: install-data-am  install-data: install-data-recursive
460  uninstall: uninstall-am  uninstall: uninstall-recursive
461    
462  install-am: all-am  install-am: all-am
463          @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am          @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am
464    
465  installcheck: installcheck-am  installcheck: installcheck-recursive
466  install-strip:  install-strip:
467          $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \          $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
468            INSTALL_STRIP_FLAG=-s \            INSTALL_STRIP_FLAG=-s \
# Line 397  distclean-generic: Line 478  distclean-generic:
478  maintainer-clean-generic:  maintainer-clean-generic:
479          @echo "This command is intended for maintainers to use"          @echo "This command is intended for maintainers to use"
480          @echo "it deletes files that may require special tools to rebuild."          @echo "it deletes files that may require special tools to rebuild."
481  clean: clean-am  clean: clean-recursive
482    
483  clean-am: clean-binPROGRAMS clean-generic clean-libLIBRARIES \  clean-am: clean-binPROGRAMS clean-generic clean-libLIBRARIES \
484          clean-libtool mostlyclean-am          clean-libtool mostlyclean-am
485    
486  distclean: distclean-am  distclean: distclean-recursive
487    
488  distclean-am: clean-am distclean-compile distclean-depend \  distclean-am: clean-am distclean-compile distclean-depend \
489          distclean-generic distclean-libtool distclean-tags          distclean-generic distclean-libtool distclean-tags
490    
491  dvi: dvi-am  dvi: dvi-recursive
492    
493  dvi-am:  dvi-am:
494    
495  info: info-am  info: info-recursive
496    
497  info-am:  info-am:
498    
# Line 419  install-data-am: Line 500  install-data-am:
500    
501  install-exec-am: install-binPROGRAMS install-libLIBRARIES  install-exec-am: install-binPROGRAMS install-libLIBRARIES
502    
503  install-info: install-info-am  install-info: install-info-recursive
504    
505  install-man:  install-man:
506    
507  installcheck-am:  installcheck-am:
508    
509  maintainer-clean: maintainer-clean-am  maintainer-clean: maintainer-clean-recursive
510    
511  maintainer-clean-am: distclean-am maintainer-clean-generic  maintainer-clean-am: distclean-am maintainer-clean-generic
512    
513  mostlyclean: mostlyclean-am  mostlyclean: mostlyclean-recursive
514    
515  mostlyclean-am: mostlyclean-compile mostlyclean-generic \  mostlyclean-am: mostlyclean-compile mostlyclean-generic \
516          mostlyclean-libtool          mostlyclean-libtool
# Line 437  mostlyclean-am: mostlyclean-compile most Line 518  mostlyclean-am: mostlyclean-compile most
518  uninstall-am: uninstall-binPROGRAMS uninstall-info-am \  uninstall-am: uninstall-binPROGRAMS uninstall-info-am \
519          uninstall-libLIBRARIES          uninstall-libLIBRARIES
520    
521  .PHONY: GTAGS all all-am check check-am clean clean-binPROGRAMS \  uninstall-info: uninstall-info-recursive
522          clean-generic clean-libLIBRARIES clean-libtool distclean \  
523          distclean-compile distclean-depend distclean-generic \  .PHONY: $(RECURSIVE_TARGETS) GTAGS all all-am check check-am clean \
524          distclean-libtool distclean-tags distdir dvi dvi-am info \          clean-binPROGRAMS clean-generic clean-libLIBRARIES \
525          info-am install install-am install-binPROGRAMS install-data \          clean-libtool clean-recursive distclean distclean-compile \
526          install-data-am install-exec install-exec-am install-info \          distclean-depend distclean-generic distclean-libtool \
527          install-info-am install-libLIBRARIES install-man install-strip \          distclean-recursive distclean-tags distdir dvi dvi-am \
528          installcheck installcheck-am installdirs maintainer-clean \          dvi-recursive info info-am info-recursive install install-am \
529          maintainer-clean-generic mostlyclean mostlyclean-compile \          install-binPROGRAMS install-data install-data-am \
530          mostlyclean-generic mostlyclean-libtool tags uninstall \          install-data-recursive install-exec install-exec-am \
531          uninstall-am uninstall-binPROGRAMS uninstall-info-am \          install-exec-recursive install-info install-info-am \
532          uninstall-libLIBRARIES          install-info-recursive install-libLIBRARIES install-man \
533            install-recursive install-strip installcheck installcheck-am \
534            installdirs installdirs-am installdirs-recursive \
535            maintainer-clean maintainer-clean-generic \
536            maintainer-clean-recursive mostlyclean mostlyclean-compile \
537            mostlyclean-generic mostlyclean-libtool mostlyclean-recursive \
538            tags tags-recursive uninstall uninstall-am \
539            uninstall-binPROGRAMS uninstall-info-am \
540            uninstall-info-recursive uninstall-libLIBRARIES \
541            uninstall-recursive
542    
543  # Tell versions [3.59,3.63) of GNU make to not export all variables.  # Tell versions [3.59,3.63) of GNU make to not export all variables.
544  # Otherwise a system limit (for SysV at least) may be exceeded.  # Otherwise a system limit (for SysV at least) may be exceeded.

Legend:
Removed from v.34  
changed lines
  Added in v.35

  ViewVC Help
Powered by ViewVC