1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084
|
# Makefile.in generated by automake 1.7.9 from Makefile.am.
# @configure_input@
# Copyright 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003
# Free Software Foundation, Inc.
# This Makefile.in is free software; the Free Software Foundation
# gives unlimited permission to copy and/or distribute it,
# with or without modifications, as long as this notice is preserved.
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY, to the extent permitted by law; without
# even the implied warranty of MERCHANTABILITY or FITNESS FOR A
# PARTICULAR PURPOSE.
@SET_MAKE@
srcdir = @srcdir@
top_srcdir = @top_srcdir@
VPATH = @srcdir@
pkgdatadir = $(datadir)/@PACKAGE@
pkglibdir = $(libdir)/@PACKAGE@
pkgincludedir = $(includedir)/@PACKAGE@
top_builddir = ..
am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd
INSTALL = @INSTALL@
install_sh_DATA = $(install_sh) -c -m 644
install_sh_PROGRAM = $(install_sh) -c
install_sh_SCRIPT = $(install_sh) -c
INSTALL_HEADER = $(INSTALL_DATA)
transform = $(program_transform_name)
NORMAL_INSTALL = :
PRE_INSTALL = :
POST_INSTALL = :
NORMAL_UNINSTALL = :
PRE_UNINSTALL = :
POST_UNINSTALL = :
host_triplet = @host@
ACLOCAL = @ACLOCAL@
ALSA_CFLAGS = @ALSA_CFLAGS@
ALSA_LIBS = @ALSA_LIBS@
AMDEP_FALSE = @AMDEP_FALSE@
AMDEP_TRUE = @AMDEP_TRUE@
AMTAR = @AMTAR@
AR = @AR@
AUTOCONF = @AUTOCONF@
AUTOHEADER = @AUTOHEADER@
AUTOMAKE = @AUTOMAKE@
AWK = @AWK@
BUILD_SAMPLER_FALSE = @BUILD_SAMPLER_FALSE@
BUILD_SAMPLER_TRUE = @BUILD_SAMPLER_TRUE@
CC = @CC@
CCDEPMODE = @CCDEPMODE@
CFLAGS = @CFLAGS@
CPP = @CPP@
CPPFLAGS = @CPPFLAGS@
CXX = @CXX@
CXXCPP = @CXXCPP@
CXXDEPMODE = @CXXDEPMODE@
CXXFLAGS = @CXXFLAGS@
CYGPATH_W = @CYGPATH_W@
DARWIN_FALSE = @DARWIN_FALSE@
DARWIN_TRUE = @DARWIN_TRUE@
DEFS = @DEFS@
DEPDIR = @DEPDIR@
ECHO = @ECHO@
ECHO_C = @ECHO_C@
ECHO_N = @ECHO_N@
ECHO_T = @ECHO_T@
EGREP = @EGREP@
EXEEXT = @EXEEXT@
F77 = @F77@
FFLAGS = @FFLAGS@
HAVE_JACK_FALSE = @HAVE_JACK_FALSE@
HAVE_JACK_TRUE = @HAVE_JACK_TRUE@
HAVE_LIBLO_FALSE = @HAVE_LIBLO_FALSE@
HAVE_LIBLO_TRUE = @HAVE_LIBLO_TRUE@
HAVE_QT_FALSE = @HAVE_QT_FALSE@
HAVE_QT_TRUE = @HAVE_QT_TRUE@
INSTALL_DATA = @INSTALL_DATA@
INSTALL_PROGRAM = @INSTALL_PROGRAM@
INSTALL_SCRIPT = @INSTALL_SCRIPT@
INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@
JACK_CFLAGS = @JACK_CFLAGS@
JACK_LIBS = @JACK_LIBS@
LDFLAGS = @LDFLAGS@
LIBLO_CFLAGS = @LIBLO_CFLAGS@
LIBLO_LIBS = @LIBLO_LIBS@
LIBOBJS = @LIBOBJS@
LIBS = @LIBS@
LIBTOOL = @LIBTOOL@
LN_S = @LN_S@
LTLIBOBJS = @LTLIBOBJS@
MAKEINFO = @MAKEINFO@
OBJEXT = @OBJEXT@
PACKAGE = @PACKAGE@
PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@
PACKAGE_NAME = @PACKAGE_NAME@
PACKAGE_STRING = @PACKAGE_STRING@
PACKAGE_TARNAME = @PACKAGE_TARNAME@
PACKAGE_VERSION = @PACKAGE_VERSION@
PATH_SEPARATOR = @PATH_SEPARATOR@
PKG_CONFIG = @PKG_CONFIG@
QT_CXXFLAGS = @QT_CXXFLAGS@
QT_LIBS = @QT_LIBS@
QT_MOC = @QT_MOC@
RANLIB = @RANLIB@
SET_MAKE = @SET_MAKE@
SHELL = @SHELL@
SNDFILE_CFLAGS = @SNDFILE_CFLAGS@
SNDFILE_LIBS = @SNDFILE_LIBS@
SRC_CFLAGS = @SRC_CFLAGS@
SRC_LIBS = @SRC_LIBS@
STRIP = @STRIP@
VERSION = @VERSION@
ac_ct_AR = @ac_ct_AR@
ac_ct_CC = @ac_ct_CC@
ac_ct_CXX = @ac_ct_CXX@
ac_ct_F77 = @ac_ct_F77@
ac_ct_RANLIB = @ac_ct_RANLIB@
ac_ct_STRIP = @ac_ct_STRIP@
am__fastdepCC_FALSE = @am__fastdepCC_FALSE@
am__fastdepCC_TRUE = @am__fastdepCC_TRUE@
am__fastdepCXX_FALSE = @am__fastdepCXX_FALSE@
am__fastdepCXX_TRUE = @am__fastdepCXX_TRUE@
am__include = @am__include@
am__leading_dot = @am__leading_dot@
am__quote = @am__quote@
bindir = @bindir@
build = @build@
build_alias = @build_alias@
build_cpu = @build_cpu@
build_os = @build_os@
build_vendor = @build_vendor@
datadir = @datadir@
exec_prefix = @exec_prefix@
host = @host@
host_alias = @host_alias@
host_cpu = @host_cpu@
host_os = @host_os@
host_vendor = @host_vendor@
includedir = @includedir@
infodir = @infodir@
install_sh = @install_sh@
libdir = @libdir@
libexecdir = @libexecdir@
localstatedir = @localstatedir@
mandir = @mandir@
oldincludedir = @oldincludedir@
prefix = @prefix@
program_transform_name = @program_transform_name@
sbindir = @sbindir@
sharedstatedir = @sharedstatedir@
sysconfdir = @sysconfdir@
target_alias = @target_alias@
@HAVE_LIBLO_TRUE@bin_PROGRAMS = dssi_osc_send dssi_osc_update
@HAVE_LIBLO_FALSE@bin_PROGRAMS =
dssi_osc_send_SOURCES = dssi_osc_send.c
dssi_osc_send_CFLAGS = -I$(top_srcdir)/dssi $(AM_CFLAGS) $(LIBLO_CFLAGS)
dssi_osc_send_LDADD = $(AM_LDFLAGS) $(LIBLO_LIBS)
dssi_osc_update_SOURCES = dssi_osc_update.c
dssi_osc_update_CFLAGS = -I$(top_srcdir)/dssi $(AM_CFLAGS) $(LIBLO_CFLAGS)
dssi_osc_update_LDADD = $(AM_LDFLAGS) $(LIBLO_LIBS)
plugindir = $(libdir)/dssi
@BUILD_SAMPLER_TRUE@plugin_LTLIBRARIES = trivial_synth.la less_trivial_synth.la trivial_sampler.la
@BUILD_SAMPLER_FALSE@plugin_LTLIBRARIES = trivial_synth.la less_trivial_synth.la
trivial_synth_la_SOURCES = \
trivial_synth.c \
../dssi/dssi.h
less_trivial_synth_la_SOURCES = \
less_trivial_synth.c \
saw.h \
../dssi/dssi.h
trivial_sampler_la_SOURCES = \
trivial_sampler.c \
trivial_sampler.h \
../dssi/dssi.h
trivial_synth_la_CFLAGS = -I$(top_srcdir)/dssi $(AM_CFLAGS) $(ALSA_CFLAGS)
less_trivial_synth_la_CFLAGS = -I$(top_srcdir)/dssi $(AM_CFLAGS) $(ALSA_CFLAGS)
trivial_sampler_la_CFLAGS = -I$(top_srcdir)/dssi $(AM_CFLAGS) $(ALSA_CFLAGS) $(SNDFILE_CFLAGS) $(SRC_CFLAGS)
@DARWIN_FALSE@trivial_synth_la_LDFLAGS = -module -avoid-version -Wc,-nostartfiles
@DARWIN_TRUE@trivial_synth_la_LDFLAGS = -module -avoid-version
@DARWIN_FALSE@less_trivial_synth_la_LDFLAGS = -module -avoid-version -Wc,-nostartfiles
@DARWIN_TRUE@less_trivial_synth_la_LDFLAGS = -module -avoid-version
@DARWIN_FALSE@less_trivial_synth_la_LIBADD = -lm
@DARWIN_TRUE@less_trivial_synth_la_LIBADD = -lm -lmx
@DARWIN_FALSE@trivial_sampler_la_LDFLAGS = -module -avoid-version -Wc,-nostartfiles
@DARWIN_TRUE@trivial_sampler_la_LDFLAGS = -module -avoid-version
trivial_sampler_la_LIBADD = -lpthread $(SNDFILE_LIBS) $(SRC_LIBS)
@HAVE_LIBLO_TRUE@@HAVE_QT_TRUE@lts_ui_PROGRAMS = LTS_qt
@HAVE_LIBLO_FALSE@lts_ui_PROGRAMS =
@HAVE_LIBLO_TRUE@@HAVE_QT_FALSE@lts_ui_PROGRAMS =
@BUILD_SAMPLER_TRUE@@HAVE_LIBLO_TRUE@@HAVE_QT_TRUE@trivial_sampler_ui_PROGRAMS = trivial_sampler_qt
@HAVE_LIBLO_FALSE@trivial_sampler_ui_PROGRAMS =
@BUILD_SAMPLER_FALSE@@HAVE_LIBLO_TRUE@@HAVE_QT_TRUE@trivial_sampler_ui_PROGRAMS =
@HAVE_LIBLO_TRUE@@HAVE_QT_FALSE@trivial_sampler_ui_PROGRAMS =
lts_uidir = $(libdir)/dssi/less_trivial_synth
LTS_MOC = less_trivial_synth_qt_gui.moc.cpp
LTS_qt_SOURCES = \
less_trivial_synth_qt_gui.cpp \
less_trivial_synth_qt_gui.h
nodist_LTS_qt_SOURCES = $(LTS_MOC)
LTS_qt_CXXFLAGS = $(AM_CXXFLAGS) $(QT_CXXFLAGS) $(LIBLO_CFLAGS)
LTS_qt_LDADD = $(AM_LDFLAGS) $(QT_LIBS) $(LIBLO_LIBS)
trivial_sampler_uidir = $(libdir)/dssi/trivial_sampler
trivial_sampler_MOC = trivial_sampler_qt_gui.moc.cpp
trivial_sampler_qt_SOURCES = \
trivial_sampler_qt_gui.cpp \
trivial_sampler_qt_gui.h \
../dssi/dssi.h
nodist_trivial_sampler_qt_SOURCES = $(trivial_sampler_MOC)
trivial_sampler_qt_CXXFLAGS = $(AM_CXXFLAGS) -I$(top_srcdir)/dssi $(ALSA_CFLAGS) $(QT_CXXFLAGS) $(LIBLO_CFLAGS) $(SNDFILE_CFLAGS)
trivial_sampler_qt_LDADD = $(AM_LDFLAGS) $(QT_LIBS) $(LIBLO_LIBS) $(SNDFILE_LIBS)
@HAVE_QT_FALSE@BUILT_SOURCES =
@HAVE_QT_TRUE@BUILT_SOURCES = $(LTS_MOC) $(trivial_sampler_MOC)
CLEANFILES = $(BUILT_SOURCES)
subdir = examples
ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs
CONFIG_HEADER = $(top_builddir)/config.h
CONFIG_CLEAN_FILES =
LTLIBRARIES = $(plugin_LTLIBRARIES)
@DARWIN_TRUE@less_trivial_synth_la_DEPENDENCIES =
@DARWIN_FALSE@less_trivial_synth_la_DEPENDENCIES =
am_less_trivial_synth_la_OBJECTS = \
less_trivial_synth_la-less_trivial_synth.lo
less_trivial_synth_la_OBJECTS = $(am_less_trivial_synth_la_OBJECTS)
trivial_sampler_la_DEPENDENCIES =
am_trivial_sampler_la_OBJECTS = trivial_sampler_la-trivial_sampler.lo
trivial_sampler_la_OBJECTS = $(am_trivial_sampler_la_OBJECTS)
trivial_synth_la_LIBADD =
am_trivial_synth_la_OBJECTS = trivial_synth_la-trivial_synth.lo
trivial_synth_la_OBJECTS = $(am_trivial_synth_la_OBJECTS)
@HAVE_LIBLO_TRUE@bin_PROGRAMS = dssi_osc_send$(EXEEXT) \
@HAVE_LIBLO_TRUE@ dssi_osc_update$(EXEEXT)
@HAVE_LIBLO_FALSE@bin_PROGRAMS =
@HAVE_LIBLO_FALSE@@HAVE_QT_TRUE@lts_ui_PROGRAMS =
@HAVE_LIBLO_FALSE@@HAVE_QT_FALSE@lts_ui_PROGRAMS =
@HAVE_LIBLO_TRUE@@HAVE_QT_TRUE@lts_ui_PROGRAMS = LTS_qt$(EXEEXT)
@HAVE_LIBLO_TRUE@@HAVE_QT_FALSE@lts_ui_PROGRAMS =
@BUILD_SAMPLER_FALSE@@HAVE_LIBLO_FALSE@@HAVE_QT_TRUE@trivial_sampler_ui_PROGRAMS =
@BUILD_SAMPLER_FALSE@@HAVE_LIBLO_FALSE@@HAVE_QT_FALSE@trivial_sampler_ui_PROGRAMS =
@BUILD_SAMPLER_FALSE@@HAVE_LIBLO_TRUE@@HAVE_QT_TRUE@trivial_sampler_ui_PROGRAMS =
@BUILD_SAMPLER_FALSE@@HAVE_LIBLO_TRUE@@HAVE_QT_FALSE@trivial_sampler_ui_PROGRAMS =
@BUILD_SAMPLER_TRUE@@HAVE_LIBLO_FALSE@@HAVE_QT_TRUE@trivial_sampler_ui_PROGRAMS =
@BUILD_SAMPLER_TRUE@@HAVE_LIBLO_FALSE@@HAVE_QT_FALSE@trivial_sampler_ui_PROGRAMS =
@BUILD_SAMPLER_TRUE@@HAVE_LIBLO_TRUE@@HAVE_QT_TRUE@trivial_sampler_ui_PROGRAMS = \
@BUILD_SAMPLER_TRUE@@HAVE_LIBLO_TRUE@@HAVE_QT_TRUE@ trivial_sampler_qt$(EXEEXT)
@BUILD_SAMPLER_TRUE@@HAVE_LIBLO_TRUE@@HAVE_QT_FALSE@trivial_sampler_ui_PROGRAMS =
PROGRAMS = $(bin_PROGRAMS) $(lts_ui_PROGRAMS) \
$(trivial_sampler_ui_PROGRAMS)
am_LTS_qt_OBJECTS = LTS_qt-less_trivial_synth_qt_gui.$(OBJEXT)
am__objects_1 = LTS_qt-less_trivial_synth_qt_gui.moc.$(OBJEXT)
nodist_LTS_qt_OBJECTS = $(am__objects_1)
LTS_qt_OBJECTS = $(am_LTS_qt_OBJECTS) $(nodist_LTS_qt_OBJECTS)
LTS_qt_DEPENDENCIES =
LTS_qt_LDFLAGS =
am_dssi_osc_send_OBJECTS = dssi_osc_send-dssi_osc_send.$(OBJEXT)
dssi_osc_send_OBJECTS = $(am_dssi_osc_send_OBJECTS)
dssi_osc_send_DEPENDENCIES =
dssi_osc_send_LDFLAGS =
am_dssi_osc_update_OBJECTS = dssi_osc_update-dssi_osc_update.$(OBJEXT)
dssi_osc_update_OBJECTS = $(am_dssi_osc_update_OBJECTS)
dssi_osc_update_DEPENDENCIES =
dssi_osc_update_LDFLAGS =
am_trivial_sampler_qt_OBJECTS = \
trivial_sampler_qt-trivial_sampler_qt_gui.$(OBJEXT)
am__objects_2 = trivial_sampler_qt-trivial_sampler_qt_gui.moc.$(OBJEXT)
nodist_trivial_sampler_qt_OBJECTS = $(am__objects_2)
trivial_sampler_qt_OBJECTS = $(am_trivial_sampler_qt_OBJECTS) \
$(nodist_trivial_sampler_qt_OBJECTS)
trivial_sampler_qt_DEPENDENCIES =
trivial_sampler_qt_LDFLAGS =
DEFAULT_INCLUDES = -I. -I$(srcdir) -I$(top_builddir)
depcomp = $(SHELL) $(top_srcdir)/depcomp
am__depfiles_maybe = depfiles
@AMDEP_TRUE@DEP_FILES = ./$(DEPDIR)/LTS_qt-less_trivial_synth_qt_gui.Po \
@AMDEP_TRUE@ ./$(DEPDIR)/LTS_qt-less_trivial_synth_qt_gui.moc.Po \
@AMDEP_TRUE@ ./$(DEPDIR)/dssi_osc_send-dssi_osc_send.Po \
@AMDEP_TRUE@ ./$(DEPDIR)/dssi_osc_update-dssi_osc_update.Po \
@AMDEP_TRUE@ ./$(DEPDIR)/less_trivial_synth_la-less_trivial_synth.Plo \
@AMDEP_TRUE@ ./$(DEPDIR)/trivial_sampler_la-trivial_sampler.Plo \
@AMDEP_TRUE@ ./$(DEPDIR)/trivial_sampler_qt-trivial_sampler_qt_gui.Po \
@AMDEP_TRUE@ ./$(DEPDIR)/trivial_sampler_qt-trivial_sampler_qt_gui.moc.Po \
@AMDEP_TRUE@ ./$(DEPDIR)/trivial_synth_la-trivial_synth.Plo
COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \
$(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
LTCOMPILE = $(LIBTOOL) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) \
$(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
CCLD = $(CC)
LINK = $(LIBTOOL) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \
$(AM_LDFLAGS) $(LDFLAGS) -o $@
CXXCOMPILE = $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \
$(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS)
LTCXXCOMPILE = $(LIBTOOL) --mode=compile $(CXX) $(DEFS) \
$(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \
$(AM_CXXFLAGS) $(CXXFLAGS)
CXXLD = $(CXX)
CXXLINK = $(LIBTOOL) --mode=link $(CXXLD) $(AM_CXXFLAGS) $(CXXFLAGS) \
$(AM_LDFLAGS) $(LDFLAGS) -o $@
DIST_SOURCES = $(less_trivial_synth_la_SOURCES) \
$(trivial_sampler_la_SOURCES) $(trivial_synth_la_SOURCES) \
$(LTS_qt_SOURCES) $(dssi_osc_send_SOURCES) \
$(dssi_osc_update_SOURCES) $(trivial_sampler_qt_SOURCES)
DIST_COMMON = $(srcdir)/Makefile.in Makefile.am
SOURCES = $(less_trivial_synth_la_SOURCES) $(trivial_sampler_la_SOURCES) $(trivial_synth_la_SOURCES) $(LTS_qt_SOURCES) $(nodist_LTS_qt_SOURCES) $(dssi_osc_send_SOURCES) $(dssi_osc_update_SOURCES) $(trivial_sampler_qt_SOURCES) $(nodist_trivial_sampler_qt_SOURCES)
all: $(BUILT_SOURCES)
$(MAKE) $(AM_MAKEFLAGS) all-am
.SUFFIXES:
.SUFFIXES: .c .cpp .lo .o .obj
$(srcdir)/Makefile.in: Makefile.am $(top_srcdir)/configure.ac $(ACLOCAL_M4)
cd $(top_srcdir) && \
$(AUTOMAKE) --foreign examples/Makefile
Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)
pluginLTLIBRARIES_INSTALL = $(INSTALL)
install-pluginLTLIBRARIES: $(plugin_LTLIBRARIES)
@$(NORMAL_INSTALL)
$(mkinstalldirs) $(DESTDIR)$(plugindir)
@list='$(plugin_LTLIBRARIES)'; for p in $$list; do \
if test -f $$p; then \
f="`echo $$p | sed -e 's|^.*/||'`"; \
echo " $(LIBTOOL) --mode=install $(pluginLTLIBRARIES_INSTALL) $(INSTALL_STRIP_FLAG) $$p $(DESTDIR)$(plugindir)/$$f"; \
$(LIBTOOL) --mode=install $(pluginLTLIBRARIES_INSTALL) $(INSTALL_STRIP_FLAG) $$p $(DESTDIR)$(plugindir)/$$f; \
else :; fi; \
done
uninstall-pluginLTLIBRARIES:
@$(NORMAL_UNINSTALL)
@list='$(plugin_LTLIBRARIES)'; for p in $$list; do \
p="`echo $$p | sed -e 's|^.*/||'`"; \
echo " $(LIBTOOL) --mode=uninstall rm -f $(DESTDIR)$(plugindir)/$$p"; \
$(LIBTOOL) --mode=uninstall rm -f $(DESTDIR)$(plugindir)/$$p; \
done
clean-pluginLTLIBRARIES:
-test -z "$(plugin_LTLIBRARIES)" || rm -f $(plugin_LTLIBRARIES)
@list='$(plugin_LTLIBRARIES)'; for p in $$list; do \
dir="`echo $$p | sed -e 's|/[^/]*$$||'`"; \
test "$$dir" = "$$p" && dir=.; \
echo "rm -f \"$${dir}/so_locations\""; \
rm -f "$${dir}/so_locations"; \
done
less_trivial_synth.la: $(less_trivial_synth_la_OBJECTS) $(less_trivial_synth_la_DEPENDENCIES)
$(LINK) -rpath $(plugindir) $(less_trivial_synth_la_LDFLAGS) $(less_trivial_synth_la_OBJECTS) $(less_trivial_synth_la_LIBADD) $(LIBS)
trivial_sampler.la: $(trivial_sampler_la_OBJECTS) $(trivial_sampler_la_DEPENDENCIES)
$(LINK) -rpath $(plugindir) $(trivial_sampler_la_LDFLAGS) $(trivial_sampler_la_OBJECTS) $(trivial_sampler_la_LIBADD) $(LIBS)
trivial_synth.la: $(trivial_synth_la_OBJECTS) $(trivial_synth_la_DEPENDENCIES)
$(LINK) -rpath $(plugindir) $(trivial_synth_la_LDFLAGS) $(trivial_synth_la_OBJECTS) $(trivial_synth_la_LIBADD) $(LIBS)
binPROGRAMS_INSTALL = $(INSTALL_PROGRAM)
install-binPROGRAMS: $(bin_PROGRAMS)
@$(NORMAL_INSTALL)
$(mkinstalldirs) $(DESTDIR)$(bindir)
@list='$(bin_PROGRAMS)'; for p in $$list; do \
p1=`echo $$p|sed 's/$(EXEEXT)$$//'`; \
if test -f $$p \
|| test -f $$p1 \
; then \
f=`echo "$$p1" | sed 's,^.*/,,;$(transform);s/$$/$(EXEEXT)/'`; \
echo " $(INSTALL_PROGRAM_ENV) $(LIBTOOL) --mode=install $(binPROGRAMS_INSTALL) $$p $(DESTDIR)$(bindir)/$$f"; \
$(INSTALL_PROGRAM_ENV) $(LIBTOOL) --mode=install $(binPROGRAMS_INSTALL) $$p $(DESTDIR)$(bindir)/$$f || exit 1; \
else :; fi; \
done
uninstall-binPROGRAMS:
@$(NORMAL_UNINSTALL)
@list='$(bin_PROGRAMS)'; for p in $$list; do \
f=`echo "$$p" | sed 's,^.*/,,;s/$(EXEEXT)$$//;$(transform);s/$$/$(EXEEXT)/'`; \
echo " rm -f $(DESTDIR)$(bindir)/$$f"; \
rm -f $(DESTDIR)$(bindir)/$$f; \
done
clean-binPROGRAMS:
@list='$(bin_PROGRAMS)'; for p in $$list; do \
f=`echo $$p|sed 's/$(EXEEXT)$$//'`; \
echo " rm -f $$p $$f"; \
rm -f $$p $$f ; \
done
lts_uiPROGRAMS_INSTALL = $(INSTALL_PROGRAM)
install-lts_uiPROGRAMS: $(lts_ui_PROGRAMS)
@$(NORMAL_INSTALL)
$(mkinstalldirs) $(DESTDIR)$(lts_uidir)
@list='$(lts_ui_PROGRAMS)'; for p in $$list; do \
p1=`echo $$p|sed 's/$(EXEEXT)$$//'`; \
if test -f $$p \
|| test -f $$p1 \
; then \
f=`echo "$$p1" | sed 's,^.*/,,;$(transform);s/$$/$(EXEEXT)/'`; \
echo " $(INSTALL_PROGRAM_ENV) $(LIBTOOL) --mode=install $(lts_uiPROGRAMS_INSTALL) $$p $(DESTDIR)$(lts_uidir)/$$f"; \
$(INSTALL_PROGRAM_ENV) $(LIBTOOL) --mode=install $(lts_uiPROGRAMS_INSTALL) $$p $(DESTDIR)$(lts_uidir)/$$f || exit 1; \
else :; fi; \
done
uninstall-lts_uiPROGRAMS:
@$(NORMAL_UNINSTALL)
@list='$(lts_ui_PROGRAMS)'; for p in $$list; do \
f=`echo "$$p" | sed 's,^.*/,,;s/$(EXEEXT)$$//;$(transform);s/$$/$(EXEEXT)/'`; \
echo " rm -f $(DESTDIR)$(lts_uidir)/$$f"; \
rm -f $(DESTDIR)$(lts_uidir)/$$f; \
done
clean-lts_uiPROGRAMS:
@list='$(lts_ui_PROGRAMS)'; for p in $$list; do \
f=`echo $$p|sed 's/$(EXEEXT)$$//'`; \
echo " rm -f $$p $$f"; \
rm -f $$p $$f ; \
done
trivial_sampler_uiPROGRAMS_INSTALL = $(INSTALL_PROGRAM)
install-trivial_sampler_uiPROGRAMS: $(trivial_sampler_ui_PROGRAMS)
@$(NORMAL_INSTALL)
$(mkinstalldirs) $(DESTDIR)$(trivial_sampler_uidir)
@list='$(trivial_sampler_ui_PROGRAMS)'; for p in $$list; do \
p1=`echo $$p|sed 's/$(EXEEXT)$$//'`; \
if test -f $$p \
|| test -f $$p1 \
; then \
f=`echo "$$p1" | sed 's,^.*/,,;$(transform);s/$$/$(EXEEXT)/'`; \
echo " $(INSTALL_PROGRAM_ENV) $(LIBTOOL) --mode=install $(trivial_sampler_uiPROGRAMS_INSTALL) $$p $(DESTDIR)$(trivial_sampler_uidir)/$$f"; \
$(INSTALL_PROGRAM_ENV) $(LIBTOOL) --mode=install $(trivial_sampler_uiPROGRAMS_INSTALL) $$p $(DESTDIR)$(trivial_sampler_uidir)/$$f || exit 1; \
else :; fi; \
done
uninstall-trivial_sampler_uiPROGRAMS:
@$(NORMAL_UNINSTALL)
@list='$(trivial_sampler_ui_PROGRAMS)'; for p in $$list; do \
f=`echo "$$p" | sed 's,^.*/,,;s/$(EXEEXT)$$//;$(transform);s/$$/$(EXEEXT)/'`; \
echo " rm -f $(DESTDIR)$(trivial_sampler_uidir)/$$f"; \
rm -f $(DESTDIR)$(trivial_sampler_uidir)/$$f; \
done
clean-trivial_sampler_uiPROGRAMS:
@list='$(trivial_sampler_ui_PROGRAMS)'; for p in $$list; do \
f=`echo $$p|sed 's/$(EXEEXT)$$//'`; \
echo " rm -f $$p $$f"; \
rm -f $$p $$f ; \
done
LTS_qt$(EXEEXT): $(LTS_qt_OBJECTS) $(LTS_qt_DEPENDENCIES)
@rm -f LTS_qt$(EXEEXT)
$(CXXLINK) $(LTS_qt_LDFLAGS) $(LTS_qt_OBJECTS) $(LTS_qt_LDADD) $(LIBS)
dssi_osc_send$(EXEEXT): $(dssi_osc_send_OBJECTS) $(dssi_osc_send_DEPENDENCIES)
@rm -f dssi_osc_send$(EXEEXT)
$(LINK) $(dssi_osc_send_LDFLAGS) $(dssi_osc_send_OBJECTS) $(dssi_osc_send_LDADD) $(LIBS)
dssi_osc_update$(EXEEXT): $(dssi_osc_update_OBJECTS) $(dssi_osc_update_DEPENDENCIES)
@rm -f dssi_osc_update$(EXEEXT)
$(LINK) $(dssi_osc_update_LDFLAGS) $(dssi_osc_update_OBJECTS) $(dssi_osc_update_LDADD) $(LIBS)
trivial_sampler_qt$(EXEEXT): $(trivial_sampler_qt_OBJECTS) $(trivial_sampler_qt_DEPENDENCIES)
@rm -f trivial_sampler_qt$(EXEEXT)
$(CXXLINK) $(trivial_sampler_qt_LDFLAGS) $(trivial_sampler_qt_OBJECTS) $(trivial_sampler_qt_LDADD) $(LIBS)
mostlyclean-compile:
-rm -f *.$(OBJEXT) core *.core
distclean-compile:
-rm -f *.tab.c
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/LTS_qt-less_trivial_synth_qt_gui.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/LTS_qt-less_trivial_synth_qt_gui.moc.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/dssi_osc_send-dssi_osc_send.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/dssi_osc_update-dssi_osc_update.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/less_trivial_synth_la-less_trivial_synth.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/trivial_sampler_la-trivial_sampler.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/trivial_sampler_qt-trivial_sampler_qt_gui.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/trivial_sampler_qt-trivial_sampler_qt_gui.moc.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/trivial_synth_la-trivial_synth.Plo@am__quote@
.c.o:
@am__fastdepCC_TRUE@ if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" \
@am__fastdepCC_TRUE@ -c -o $@ `test -f '$<' || echo '$(srcdir)/'`$<; \
@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; \
@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; \
@am__fastdepCC_TRUE@ fi
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/$*.Po' tmpdepfile='$(DEPDIR)/$*.TPo' @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(COMPILE) -c `test -f '$<' || echo '$(srcdir)/'`$<
.c.obj:
@am__fastdepCC_TRUE@ if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" \
@am__fastdepCC_TRUE@ -c -o $@ `if test -f '$<'; then $(CYGPATH_W) '$<'; else $(CYGPATH_W) '$(srcdir)/$<'; fi`; \
@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; \
@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; \
@am__fastdepCC_TRUE@ fi
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/$*.Po' tmpdepfile='$(DEPDIR)/$*.TPo' @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(COMPILE) -c `if test -f '$<'; then $(CYGPATH_W) '$<'; else $(CYGPATH_W) '$(srcdir)/$<'; fi`
.c.lo:
@am__fastdepCC_TRUE@ if $(LTCOMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" \
@am__fastdepCC_TRUE@ -c -o $@ `test -f '$<' || echo '$(srcdir)/'`$<; \
@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Plo"; \
@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; \
@am__fastdepCC_TRUE@ fi
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/$*.Plo' tmpdepfile='$(DEPDIR)/$*.TPlo' @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(LTCOMPILE) -c -o $@ `test -f '$<' || echo '$(srcdir)/'`$<
less_trivial_synth_la-less_trivial_synth.o: less_trivial_synth.c
@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(less_trivial_synth_la_CFLAGS) $(CFLAGS) -MT less_trivial_synth_la-less_trivial_synth.o -MD -MP -MF "$(DEPDIR)/less_trivial_synth_la-less_trivial_synth.Tpo" \
@am__fastdepCC_TRUE@ -c -o less_trivial_synth_la-less_trivial_synth.o `test -f 'less_trivial_synth.c' || echo '$(srcdir)/'`less_trivial_synth.c; \
@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/less_trivial_synth_la-less_trivial_synth.Tpo" "$(DEPDIR)/less_trivial_synth_la-less_trivial_synth.Po"; \
@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/less_trivial_synth_la-less_trivial_synth.Tpo"; exit 1; \
@am__fastdepCC_TRUE@ fi
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='less_trivial_synth.c' object='less_trivial_synth_la-less_trivial_synth.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/less_trivial_synth_la-less_trivial_synth.Po' tmpdepfile='$(DEPDIR)/less_trivial_synth_la-less_trivial_synth.TPo' @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(less_trivial_synth_la_CFLAGS) $(CFLAGS) -c -o less_trivial_synth_la-less_trivial_synth.o `test -f 'less_trivial_synth.c' || echo '$(srcdir)/'`less_trivial_synth.c
less_trivial_synth_la-less_trivial_synth.obj: less_trivial_synth.c
@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(less_trivial_synth_la_CFLAGS) $(CFLAGS) -MT less_trivial_synth_la-less_trivial_synth.obj -MD -MP -MF "$(DEPDIR)/less_trivial_synth_la-less_trivial_synth.Tpo" \
@am__fastdepCC_TRUE@ -c -o less_trivial_synth_la-less_trivial_synth.obj `if test -f 'less_trivial_synth.c'; then $(CYGPATH_W) 'less_trivial_synth.c'; else $(CYGPATH_W) '$(srcdir)/less_trivial_synth.c'; fi`; \
@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/less_trivial_synth_la-less_trivial_synth.Tpo" "$(DEPDIR)/less_trivial_synth_la-less_trivial_synth.Po"; \
@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/less_trivial_synth_la-less_trivial_synth.Tpo"; exit 1; \
@am__fastdepCC_TRUE@ fi
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='less_trivial_synth.c' object='less_trivial_synth_la-less_trivial_synth.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/less_trivial_synth_la-less_trivial_synth.Po' tmpdepfile='$(DEPDIR)/less_trivial_synth_la-less_trivial_synth.TPo' @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(less_trivial_synth_la_CFLAGS) $(CFLAGS) -c -o less_trivial_synth_la-less_trivial_synth.obj `if test -f 'less_trivial_synth.c'; then $(CYGPATH_W) 'less_trivial_synth.c'; else $(CYGPATH_W) '$(srcdir)/less_trivial_synth.c'; fi`
less_trivial_synth_la-less_trivial_synth.lo: less_trivial_synth.c
@am__fastdepCC_TRUE@ if $(LIBTOOL) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(less_trivial_synth_la_CFLAGS) $(CFLAGS) -MT less_trivial_synth_la-less_trivial_synth.lo -MD -MP -MF "$(DEPDIR)/less_trivial_synth_la-less_trivial_synth.Tpo" \
@am__fastdepCC_TRUE@ -c -o less_trivial_synth_la-less_trivial_synth.lo `test -f 'less_trivial_synth.c' || echo '$(srcdir)/'`less_trivial_synth.c; \
@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/less_trivial_synth_la-less_trivial_synth.Tpo" "$(DEPDIR)/less_trivial_synth_la-less_trivial_synth.Plo"; \
@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/less_trivial_synth_la-less_trivial_synth.Tpo"; exit 1; \
@am__fastdepCC_TRUE@ fi
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='less_trivial_synth.c' object='less_trivial_synth_la-less_trivial_synth.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/less_trivial_synth_la-less_trivial_synth.Plo' tmpdepfile='$(DEPDIR)/less_trivial_synth_la-less_trivial_synth.TPlo' @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(LIBTOOL) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(less_trivial_synth_la_CFLAGS) $(CFLAGS) -c -o less_trivial_synth_la-less_trivial_synth.lo `test -f 'less_trivial_synth.c' || echo '$(srcdir)/'`less_trivial_synth.c
trivial_sampler_la-trivial_sampler.o: trivial_sampler.c
@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(trivial_sampler_la_CFLAGS) $(CFLAGS) -MT trivial_sampler_la-trivial_sampler.o -MD -MP -MF "$(DEPDIR)/trivial_sampler_la-trivial_sampler.Tpo" \
@am__fastdepCC_TRUE@ -c -o trivial_sampler_la-trivial_sampler.o `test -f 'trivial_sampler.c' || echo '$(srcdir)/'`trivial_sampler.c; \
@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/trivial_sampler_la-trivial_sampler.Tpo" "$(DEPDIR)/trivial_sampler_la-trivial_sampler.Po"; \
@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/trivial_sampler_la-trivial_sampler.Tpo"; exit 1; \
@am__fastdepCC_TRUE@ fi
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='trivial_sampler.c' object='trivial_sampler_la-trivial_sampler.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/trivial_sampler_la-trivial_sampler.Po' tmpdepfile='$(DEPDIR)/trivial_sampler_la-trivial_sampler.TPo' @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(trivial_sampler_la_CFLAGS) $(CFLAGS) -c -o trivial_sampler_la-trivial_sampler.o `test -f 'trivial_sampler.c' || echo '$(srcdir)/'`trivial_sampler.c
trivial_sampler_la-trivial_sampler.obj: trivial_sampler.c
@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(trivial_sampler_la_CFLAGS) $(CFLAGS) -MT trivial_sampler_la-trivial_sampler.obj -MD -MP -MF "$(DEPDIR)/trivial_sampler_la-trivial_sampler.Tpo" \
@am__fastdepCC_TRUE@ -c -o trivial_sampler_la-trivial_sampler.obj `if test -f 'trivial_sampler.c'; then $(CYGPATH_W) 'trivial_sampler.c'; else $(CYGPATH_W) '$(srcdir)/trivial_sampler.c'; fi`; \
@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/trivial_sampler_la-trivial_sampler.Tpo" "$(DEPDIR)/trivial_sampler_la-trivial_sampler.Po"; \
@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/trivial_sampler_la-trivial_sampler.Tpo"; exit 1; \
@am__fastdepCC_TRUE@ fi
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='trivial_sampler.c' object='trivial_sampler_la-trivial_sampler.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/trivial_sampler_la-trivial_sampler.Po' tmpdepfile='$(DEPDIR)/trivial_sampler_la-trivial_sampler.TPo' @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(trivial_sampler_la_CFLAGS) $(CFLAGS) -c -o trivial_sampler_la-trivial_sampler.obj `if test -f 'trivial_sampler.c'; then $(CYGPATH_W) 'trivial_sampler.c'; else $(CYGPATH_W) '$(srcdir)/trivial_sampler.c'; fi`
trivial_sampler_la-trivial_sampler.lo: trivial_sampler.c
@am__fastdepCC_TRUE@ if $(LIBTOOL) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(trivial_sampler_la_CFLAGS) $(CFLAGS) -MT trivial_sampler_la-trivial_sampler.lo -MD -MP -MF "$(DEPDIR)/trivial_sampler_la-trivial_sampler.Tpo" \
@am__fastdepCC_TRUE@ -c -o trivial_sampler_la-trivial_sampler.lo `test -f 'trivial_sampler.c' || echo '$(srcdir)/'`trivial_sampler.c; \
@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/trivial_sampler_la-trivial_sampler.Tpo" "$(DEPDIR)/trivial_sampler_la-trivial_sampler.Plo"; \
@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/trivial_sampler_la-trivial_sampler.Tpo"; exit 1; \
@am__fastdepCC_TRUE@ fi
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='trivial_sampler.c' object='trivial_sampler_la-trivial_sampler.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/trivial_sampler_la-trivial_sampler.Plo' tmpdepfile='$(DEPDIR)/trivial_sampler_la-trivial_sampler.TPlo' @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(LIBTOOL) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(trivial_sampler_la_CFLAGS) $(CFLAGS) -c -o trivial_sampler_la-trivial_sampler.lo `test -f 'trivial_sampler.c' || echo '$(srcdir)/'`trivial_sampler.c
trivial_synth_la-trivial_synth.o: trivial_synth.c
@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(trivial_synth_la_CFLAGS) $(CFLAGS) -MT trivial_synth_la-trivial_synth.o -MD -MP -MF "$(DEPDIR)/trivial_synth_la-trivial_synth.Tpo" \
@am__fastdepCC_TRUE@ -c -o trivial_synth_la-trivial_synth.o `test -f 'trivial_synth.c' || echo '$(srcdir)/'`trivial_synth.c; \
@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/trivial_synth_la-trivial_synth.Tpo" "$(DEPDIR)/trivial_synth_la-trivial_synth.Po"; \
@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/trivial_synth_la-trivial_synth.Tpo"; exit 1; \
@am__fastdepCC_TRUE@ fi
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='trivial_synth.c' object='trivial_synth_la-trivial_synth.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/trivial_synth_la-trivial_synth.Po' tmpdepfile='$(DEPDIR)/trivial_synth_la-trivial_synth.TPo' @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(trivial_synth_la_CFLAGS) $(CFLAGS) -c -o trivial_synth_la-trivial_synth.o `test -f 'trivial_synth.c' || echo '$(srcdir)/'`trivial_synth.c
trivial_synth_la-trivial_synth.obj: trivial_synth.c
@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(trivial_synth_la_CFLAGS) $(CFLAGS) -MT trivial_synth_la-trivial_synth.obj -MD -MP -MF "$(DEPDIR)/trivial_synth_la-trivial_synth.Tpo" \
@am__fastdepCC_TRUE@ -c -o trivial_synth_la-trivial_synth.obj `if test -f 'trivial_synth.c'; then $(CYGPATH_W) 'trivial_synth.c'; else $(CYGPATH_W) '$(srcdir)/trivial_synth.c'; fi`; \
@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/trivial_synth_la-trivial_synth.Tpo" "$(DEPDIR)/trivial_synth_la-trivial_synth.Po"; \
@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/trivial_synth_la-trivial_synth.Tpo"; exit 1; \
@am__fastdepCC_TRUE@ fi
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='trivial_synth.c' object='trivial_synth_la-trivial_synth.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/trivial_synth_la-trivial_synth.Po' tmpdepfile='$(DEPDIR)/trivial_synth_la-trivial_synth.TPo' @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(trivial_synth_la_CFLAGS) $(CFLAGS) -c -o trivial_synth_la-trivial_synth.obj `if test -f 'trivial_synth.c'; then $(CYGPATH_W) 'trivial_synth.c'; else $(CYGPATH_W) '$(srcdir)/trivial_synth.c'; fi`
trivial_synth_la-trivial_synth.lo: trivial_synth.c
@am__fastdepCC_TRUE@ if $(LIBTOOL) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(trivial_synth_la_CFLAGS) $(CFLAGS) -MT trivial_synth_la-trivial_synth.lo -MD -MP -MF "$(DEPDIR)/trivial_synth_la-trivial_synth.Tpo" \
@am__fastdepCC_TRUE@ -c -o trivial_synth_la-trivial_synth.lo `test -f 'trivial_synth.c' || echo '$(srcdir)/'`trivial_synth.c; \
@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/trivial_synth_la-trivial_synth.Tpo" "$(DEPDIR)/trivial_synth_la-trivial_synth.Plo"; \
@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/trivial_synth_la-trivial_synth.Tpo"; exit 1; \
@am__fastdepCC_TRUE@ fi
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='trivial_synth.c' object='trivial_synth_la-trivial_synth.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/trivial_synth_la-trivial_synth.Plo' tmpdepfile='$(DEPDIR)/trivial_synth_la-trivial_synth.TPlo' @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(LIBTOOL) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(trivial_synth_la_CFLAGS) $(CFLAGS) -c -o trivial_synth_la-trivial_synth.lo `test -f 'trivial_synth.c' || echo '$(srcdir)/'`trivial_synth.c
dssi_osc_send-dssi_osc_send.o: dssi_osc_send.c
@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(dssi_osc_send_CFLAGS) $(CFLAGS) -MT dssi_osc_send-dssi_osc_send.o -MD -MP -MF "$(DEPDIR)/dssi_osc_send-dssi_osc_send.Tpo" \
@am__fastdepCC_TRUE@ -c -o dssi_osc_send-dssi_osc_send.o `test -f 'dssi_osc_send.c' || echo '$(srcdir)/'`dssi_osc_send.c; \
@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/dssi_osc_send-dssi_osc_send.Tpo" "$(DEPDIR)/dssi_osc_send-dssi_osc_send.Po"; \
@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/dssi_osc_send-dssi_osc_send.Tpo"; exit 1; \
@am__fastdepCC_TRUE@ fi
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='dssi_osc_send.c' object='dssi_osc_send-dssi_osc_send.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/dssi_osc_send-dssi_osc_send.Po' tmpdepfile='$(DEPDIR)/dssi_osc_send-dssi_osc_send.TPo' @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(dssi_osc_send_CFLAGS) $(CFLAGS) -c -o dssi_osc_send-dssi_osc_send.o `test -f 'dssi_osc_send.c' || echo '$(srcdir)/'`dssi_osc_send.c
dssi_osc_send-dssi_osc_send.obj: dssi_osc_send.c
@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(dssi_osc_send_CFLAGS) $(CFLAGS) -MT dssi_osc_send-dssi_osc_send.obj -MD -MP -MF "$(DEPDIR)/dssi_osc_send-dssi_osc_send.Tpo" \
@am__fastdepCC_TRUE@ -c -o dssi_osc_send-dssi_osc_send.obj `if test -f 'dssi_osc_send.c'; then $(CYGPATH_W) 'dssi_osc_send.c'; else $(CYGPATH_W) '$(srcdir)/dssi_osc_send.c'; fi`; \
@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/dssi_osc_send-dssi_osc_send.Tpo" "$(DEPDIR)/dssi_osc_send-dssi_osc_send.Po"; \
@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/dssi_osc_send-dssi_osc_send.Tpo"; exit 1; \
@am__fastdepCC_TRUE@ fi
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='dssi_osc_send.c' object='dssi_osc_send-dssi_osc_send.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/dssi_osc_send-dssi_osc_send.Po' tmpdepfile='$(DEPDIR)/dssi_osc_send-dssi_osc_send.TPo' @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(dssi_osc_send_CFLAGS) $(CFLAGS) -c -o dssi_osc_send-dssi_osc_send.obj `if test -f 'dssi_osc_send.c'; then $(CYGPATH_W) 'dssi_osc_send.c'; else $(CYGPATH_W) '$(srcdir)/dssi_osc_send.c'; fi`
dssi_osc_send-dssi_osc_send.lo: dssi_osc_send.c
@am__fastdepCC_TRUE@ if $(LIBTOOL) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(dssi_osc_send_CFLAGS) $(CFLAGS) -MT dssi_osc_send-dssi_osc_send.lo -MD -MP -MF "$(DEPDIR)/dssi_osc_send-dssi_osc_send.Tpo" \
@am__fastdepCC_TRUE@ -c -o dssi_osc_send-dssi_osc_send.lo `test -f 'dssi_osc_send.c' || echo '$(srcdir)/'`dssi_osc_send.c; \
@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/dssi_osc_send-dssi_osc_send.Tpo" "$(DEPDIR)/dssi_osc_send-dssi_osc_send.Plo"; \
@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/dssi_osc_send-dssi_osc_send.Tpo"; exit 1; \
@am__fastdepCC_TRUE@ fi
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='dssi_osc_send.c' object='dssi_osc_send-dssi_osc_send.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/dssi_osc_send-dssi_osc_send.Plo' tmpdepfile='$(DEPDIR)/dssi_osc_send-dssi_osc_send.TPlo' @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(LIBTOOL) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(dssi_osc_send_CFLAGS) $(CFLAGS) -c -o dssi_osc_send-dssi_osc_send.lo `test -f 'dssi_osc_send.c' || echo '$(srcdir)/'`dssi_osc_send.c
dssi_osc_update-dssi_osc_update.o: dssi_osc_update.c
@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(dssi_osc_update_CFLAGS) $(CFLAGS) -MT dssi_osc_update-dssi_osc_update.o -MD -MP -MF "$(DEPDIR)/dssi_osc_update-dssi_osc_update.Tpo" \
@am__fastdepCC_TRUE@ -c -o dssi_osc_update-dssi_osc_update.o `test -f 'dssi_osc_update.c' || echo '$(srcdir)/'`dssi_osc_update.c; \
@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/dssi_osc_update-dssi_osc_update.Tpo" "$(DEPDIR)/dssi_osc_update-dssi_osc_update.Po"; \
@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/dssi_osc_update-dssi_osc_update.Tpo"; exit 1; \
@am__fastdepCC_TRUE@ fi
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='dssi_osc_update.c' object='dssi_osc_update-dssi_osc_update.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/dssi_osc_update-dssi_osc_update.Po' tmpdepfile='$(DEPDIR)/dssi_osc_update-dssi_osc_update.TPo' @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(dssi_osc_update_CFLAGS) $(CFLAGS) -c -o dssi_osc_update-dssi_osc_update.o `test -f 'dssi_osc_update.c' || echo '$(srcdir)/'`dssi_osc_update.c
dssi_osc_update-dssi_osc_update.obj: dssi_osc_update.c
@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(dssi_osc_update_CFLAGS) $(CFLAGS) -MT dssi_osc_update-dssi_osc_update.obj -MD -MP -MF "$(DEPDIR)/dssi_osc_update-dssi_osc_update.Tpo" \
@am__fastdepCC_TRUE@ -c -o dssi_osc_update-dssi_osc_update.obj `if test -f 'dssi_osc_update.c'; then $(CYGPATH_W) 'dssi_osc_update.c'; else $(CYGPATH_W) '$(srcdir)/dssi_osc_update.c'; fi`; \
@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/dssi_osc_update-dssi_osc_update.Tpo" "$(DEPDIR)/dssi_osc_update-dssi_osc_update.Po"; \
@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/dssi_osc_update-dssi_osc_update.Tpo"; exit 1; \
@am__fastdepCC_TRUE@ fi
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='dssi_osc_update.c' object='dssi_osc_update-dssi_osc_update.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/dssi_osc_update-dssi_osc_update.Po' tmpdepfile='$(DEPDIR)/dssi_osc_update-dssi_osc_update.TPo' @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(dssi_osc_update_CFLAGS) $(CFLAGS) -c -o dssi_osc_update-dssi_osc_update.obj `if test -f 'dssi_osc_update.c'; then $(CYGPATH_W) 'dssi_osc_update.c'; else $(CYGPATH_W) '$(srcdir)/dssi_osc_update.c'; fi`
dssi_osc_update-dssi_osc_update.lo: dssi_osc_update.c
@am__fastdepCC_TRUE@ if $(LIBTOOL) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(dssi_osc_update_CFLAGS) $(CFLAGS) -MT dssi_osc_update-dssi_osc_update.lo -MD -MP -MF "$(DEPDIR)/dssi_osc_update-dssi_osc_update.Tpo" \
@am__fastdepCC_TRUE@ -c -o dssi_osc_update-dssi_osc_update.lo `test -f 'dssi_osc_update.c' || echo '$(srcdir)/'`dssi_osc_update.c; \
@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/dssi_osc_update-dssi_osc_update.Tpo" "$(DEPDIR)/dssi_osc_update-dssi_osc_update.Plo"; \
@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/dssi_osc_update-dssi_osc_update.Tpo"; exit 1; \
@am__fastdepCC_TRUE@ fi
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='dssi_osc_update.c' object='dssi_osc_update-dssi_osc_update.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/dssi_osc_update-dssi_osc_update.Plo' tmpdepfile='$(DEPDIR)/dssi_osc_update-dssi_osc_update.TPlo' @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(LIBTOOL) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(dssi_osc_update_CFLAGS) $(CFLAGS) -c -o dssi_osc_update-dssi_osc_update.lo `test -f 'dssi_osc_update.c' || echo '$(srcdir)/'`dssi_osc_update.c
.cpp.o:
@am__fastdepCXX_TRUE@ if $(CXXCOMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" \
@am__fastdepCXX_TRUE@ -c -o $@ `test -f '$<' || echo '$(srcdir)/'`$<; \
@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; \
@am__fastdepCXX_TRUE@ else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; \
@am__fastdepCXX_TRUE@ fi
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ depfile='$(DEPDIR)/$*.Po' tmpdepfile='$(DEPDIR)/$*.TPo' @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(CXXCOMPILE) -c -o $@ `test -f '$<' || echo '$(srcdir)/'`$<
.cpp.obj:
@am__fastdepCXX_TRUE@ if $(CXXCOMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" \
@am__fastdepCXX_TRUE@ -c -o $@ `if test -f '$<'; then $(CYGPATH_W) '$<'; else $(CYGPATH_W) '$(srcdir)/$<'; fi`; \
@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; \
@am__fastdepCXX_TRUE@ else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; \
@am__fastdepCXX_TRUE@ fi
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ depfile='$(DEPDIR)/$*.Po' tmpdepfile='$(DEPDIR)/$*.TPo' @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(CXXCOMPILE) -c -o $@ `if test -f '$<'; then $(CYGPATH_W) '$<'; else $(CYGPATH_W) '$(srcdir)/$<'; fi`
.cpp.lo:
@am__fastdepCXX_TRUE@ if $(LTCXXCOMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" \
@am__fastdepCXX_TRUE@ -c -o $@ `test -f '$<' || echo '$(srcdir)/'`$<; \
@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Plo"; \
@am__fastdepCXX_TRUE@ else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; \
@am__fastdepCXX_TRUE@ fi
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ depfile='$(DEPDIR)/$*.Plo' tmpdepfile='$(DEPDIR)/$*.TPlo' @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(LTCXXCOMPILE) -c -o $@ `test -f '$<' || echo '$(srcdir)/'`$<
LTS_qt-less_trivial_synth_qt_gui.o: less_trivial_synth_qt_gui.cpp
@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(LTS_qt_CXXFLAGS) $(CXXFLAGS) -MT LTS_qt-less_trivial_synth_qt_gui.o -MD -MP -MF "$(DEPDIR)/LTS_qt-less_trivial_synth_qt_gui.Tpo" \
@am__fastdepCXX_TRUE@ -c -o LTS_qt-less_trivial_synth_qt_gui.o `test -f 'less_trivial_synth_qt_gui.cpp' || echo '$(srcdir)/'`less_trivial_synth_qt_gui.cpp; \
@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/LTS_qt-less_trivial_synth_qt_gui.Tpo" "$(DEPDIR)/LTS_qt-less_trivial_synth_qt_gui.Po"; \
@am__fastdepCXX_TRUE@ else rm -f "$(DEPDIR)/LTS_qt-less_trivial_synth_qt_gui.Tpo"; exit 1; \
@am__fastdepCXX_TRUE@ fi
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='less_trivial_synth_qt_gui.cpp' object='LTS_qt-less_trivial_synth_qt_gui.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ depfile='$(DEPDIR)/LTS_qt-less_trivial_synth_qt_gui.Po' tmpdepfile='$(DEPDIR)/LTS_qt-less_trivial_synth_qt_gui.TPo' @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(LTS_qt_CXXFLAGS) $(CXXFLAGS) -c -o LTS_qt-less_trivial_synth_qt_gui.o `test -f 'less_trivial_synth_qt_gui.cpp' || echo '$(srcdir)/'`less_trivial_synth_qt_gui.cpp
LTS_qt-less_trivial_synth_qt_gui.obj: less_trivial_synth_qt_gui.cpp
@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(LTS_qt_CXXFLAGS) $(CXXFLAGS) -MT LTS_qt-less_trivial_synth_qt_gui.obj -MD -MP -MF "$(DEPDIR)/LTS_qt-less_trivial_synth_qt_gui.Tpo" \
@am__fastdepCXX_TRUE@ -c -o LTS_qt-less_trivial_synth_qt_gui.obj `if test -f 'less_trivial_synth_qt_gui.cpp'; then $(CYGPATH_W) 'less_trivial_synth_qt_gui.cpp'; else $(CYGPATH_W) '$(srcdir)/less_trivial_synth_qt_gui.cpp'; fi`; \
@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/LTS_qt-less_trivial_synth_qt_gui.Tpo" "$(DEPDIR)/LTS_qt-less_trivial_synth_qt_gui.Po"; \
@am__fastdepCXX_TRUE@ else rm -f "$(DEPDIR)/LTS_qt-less_trivial_synth_qt_gui.Tpo"; exit 1; \
@am__fastdepCXX_TRUE@ fi
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='less_trivial_synth_qt_gui.cpp' object='LTS_qt-less_trivial_synth_qt_gui.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ depfile='$(DEPDIR)/LTS_qt-less_trivial_synth_qt_gui.Po' tmpdepfile='$(DEPDIR)/LTS_qt-less_trivial_synth_qt_gui.TPo' @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(LTS_qt_CXXFLAGS) $(CXXFLAGS) -c -o LTS_qt-less_trivial_synth_qt_gui.obj `if test -f 'less_trivial_synth_qt_gui.cpp'; then $(CYGPATH_W) 'less_trivial_synth_qt_gui.cpp'; else $(CYGPATH_W) '$(srcdir)/less_trivial_synth_qt_gui.cpp'; fi`
LTS_qt-less_trivial_synth_qt_gui.lo: less_trivial_synth_qt_gui.cpp
@am__fastdepCXX_TRUE@ if $(LIBTOOL) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(LTS_qt_CXXFLAGS) $(CXXFLAGS) -MT LTS_qt-less_trivial_synth_qt_gui.lo -MD -MP -MF "$(DEPDIR)/LTS_qt-less_trivial_synth_qt_gui.Tpo" \
@am__fastdepCXX_TRUE@ -c -o LTS_qt-less_trivial_synth_qt_gui.lo `test -f 'less_trivial_synth_qt_gui.cpp' || echo '$(srcdir)/'`less_trivial_synth_qt_gui.cpp; \
@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/LTS_qt-less_trivial_synth_qt_gui.Tpo" "$(DEPDIR)/LTS_qt-less_trivial_synth_qt_gui.Plo"; \
@am__fastdepCXX_TRUE@ else rm -f "$(DEPDIR)/LTS_qt-less_trivial_synth_qt_gui.Tpo"; exit 1; \
@am__fastdepCXX_TRUE@ fi
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='less_trivial_synth_qt_gui.cpp' object='LTS_qt-less_trivial_synth_qt_gui.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ depfile='$(DEPDIR)/LTS_qt-less_trivial_synth_qt_gui.Plo' tmpdepfile='$(DEPDIR)/LTS_qt-less_trivial_synth_qt_gui.TPlo' @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(LIBTOOL) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(LTS_qt_CXXFLAGS) $(CXXFLAGS) -c -o LTS_qt-less_trivial_synth_qt_gui.lo `test -f 'less_trivial_synth_qt_gui.cpp' || echo '$(srcdir)/'`less_trivial_synth_qt_gui.cpp
LTS_qt-less_trivial_synth_qt_gui.moc.o: less_trivial_synth_qt_gui.moc.cpp
@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(LTS_qt_CXXFLAGS) $(CXXFLAGS) -MT LTS_qt-less_trivial_synth_qt_gui.moc.o -MD -MP -MF "$(DEPDIR)/LTS_qt-less_trivial_synth_qt_gui.moc.Tpo" \
@am__fastdepCXX_TRUE@ -c -o LTS_qt-less_trivial_synth_qt_gui.moc.o `test -f 'less_trivial_synth_qt_gui.moc.cpp' || echo '$(srcdir)/'`less_trivial_synth_qt_gui.moc.cpp; \
@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/LTS_qt-less_trivial_synth_qt_gui.moc.Tpo" "$(DEPDIR)/LTS_qt-less_trivial_synth_qt_gui.moc.Po"; \
@am__fastdepCXX_TRUE@ else rm -f "$(DEPDIR)/LTS_qt-less_trivial_synth_qt_gui.moc.Tpo"; exit 1; \
@am__fastdepCXX_TRUE@ fi
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='less_trivial_synth_qt_gui.moc.cpp' object='LTS_qt-less_trivial_synth_qt_gui.moc.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ depfile='$(DEPDIR)/LTS_qt-less_trivial_synth_qt_gui.moc.Po' tmpdepfile='$(DEPDIR)/LTS_qt-less_trivial_synth_qt_gui.moc.TPo' @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(LTS_qt_CXXFLAGS) $(CXXFLAGS) -c -o LTS_qt-less_trivial_synth_qt_gui.moc.o `test -f 'less_trivial_synth_qt_gui.moc.cpp' || echo '$(srcdir)/'`less_trivial_synth_qt_gui.moc.cpp
LTS_qt-less_trivial_synth_qt_gui.moc.obj: less_trivial_synth_qt_gui.moc.cpp
@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(LTS_qt_CXXFLAGS) $(CXXFLAGS) -MT LTS_qt-less_trivial_synth_qt_gui.moc.obj -MD -MP -MF "$(DEPDIR)/LTS_qt-less_trivial_synth_qt_gui.moc.Tpo" \
@am__fastdepCXX_TRUE@ -c -o LTS_qt-less_trivial_synth_qt_gui.moc.obj `if test -f 'less_trivial_synth_qt_gui.moc.cpp'; then $(CYGPATH_W) 'less_trivial_synth_qt_gui.moc.cpp'; else $(CYGPATH_W) '$(srcdir)/less_trivial_synth_qt_gui.moc.cpp'; fi`; \
@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/LTS_qt-less_trivial_synth_qt_gui.moc.Tpo" "$(DEPDIR)/LTS_qt-less_trivial_synth_qt_gui.moc.Po"; \
@am__fastdepCXX_TRUE@ else rm -f "$(DEPDIR)/LTS_qt-less_trivial_synth_qt_gui.moc.Tpo"; exit 1; \
@am__fastdepCXX_TRUE@ fi
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='less_trivial_synth_qt_gui.moc.cpp' object='LTS_qt-less_trivial_synth_qt_gui.moc.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ depfile='$(DEPDIR)/LTS_qt-less_trivial_synth_qt_gui.moc.Po' tmpdepfile='$(DEPDIR)/LTS_qt-less_trivial_synth_qt_gui.moc.TPo' @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(LTS_qt_CXXFLAGS) $(CXXFLAGS) -c -o LTS_qt-less_trivial_synth_qt_gui.moc.obj `if test -f 'less_trivial_synth_qt_gui.moc.cpp'; then $(CYGPATH_W) 'less_trivial_synth_qt_gui.moc.cpp'; else $(CYGPATH_W) '$(srcdir)/less_trivial_synth_qt_gui.moc.cpp'; fi`
LTS_qt-less_trivial_synth_qt_gui.moc.lo: less_trivial_synth_qt_gui.moc.cpp
@am__fastdepCXX_TRUE@ if $(LIBTOOL) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(LTS_qt_CXXFLAGS) $(CXXFLAGS) -MT LTS_qt-less_trivial_synth_qt_gui.moc.lo -MD -MP -MF "$(DEPDIR)/LTS_qt-less_trivial_synth_qt_gui.moc.Tpo" \
@am__fastdepCXX_TRUE@ -c -o LTS_qt-less_trivial_synth_qt_gui.moc.lo `test -f 'less_trivial_synth_qt_gui.moc.cpp' || echo '$(srcdir)/'`less_trivial_synth_qt_gui.moc.cpp; \
@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/LTS_qt-less_trivial_synth_qt_gui.moc.Tpo" "$(DEPDIR)/LTS_qt-less_trivial_synth_qt_gui.moc.Plo"; \
@am__fastdepCXX_TRUE@ else rm -f "$(DEPDIR)/LTS_qt-less_trivial_synth_qt_gui.moc.Tpo"; exit 1; \
@am__fastdepCXX_TRUE@ fi
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='less_trivial_synth_qt_gui.moc.cpp' object='LTS_qt-less_trivial_synth_qt_gui.moc.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ depfile='$(DEPDIR)/LTS_qt-less_trivial_synth_qt_gui.moc.Plo' tmpdepfile='$(DEPDIR)/LTS_qt-less_trivial_synth_qt_gui.moc.TPlo' @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(LIBTOOL) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(LTS_qt_CXXFLAGS) $(CXXFLAGS) -c -o LTS_qt-less_trivial_synth_qt_gui.moc.lo `test -f 'less_trivial_synth_qt_gui.moc.cpp' || echo '$(srcdir)/'`less_trivial_synth_qt_gui.moc.cpp
trivial_sampler_qt-trivial_sampler_qt_gui.o: trivial_sampler_qt_gui.cpp
@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(trivial_sampler_qt_CXXFLAGS) $(CXXFLAGS) -MT trivial_sampler_qt-trivial_sampler_qt_gui.o -MD -MP -MF "$(DEPDIR)/trivial_sampler_qt-trivial_sampler_qt_gui.Tpo" \
@am__fastdepCXX_TRUE@ -c -o trivial_sampler_qt-trivial_sampler_qt_gui.o `test -f 'trivial_sampler_qt_gui.cpp' || echo '$(srcdir)/'`trivial_sampler_qt_gui.cpp; \
@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/trivial_sampler_qt-trivial_sampler_qt_gui.Tpo" "$(DEPDIR)/trivial_sampler_qt-trivial_sampler_qt_gui.Po"; \
@am__fastdepCXX_TRUE@ else rm -f "$(DEPDIR)/trivial_sampler_qt-trivial_sampler_qt_gui.Tpo"; exit 1; \
@am__fastdepCXX_TRUE@ fi
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='trivial_sampler_qt_gui.cpp' object='trivial_sampler_qt-trivial_sampler_qt_gui.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ depfile='$(DEPDIR)/trivial_sampler_qt-trivial_sampler_qt_gui.Po' tmpdepfile='$(DEPDIR)/trivial_sampler_qt-trivial_sampler_qt_gui.TPo' @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(trivial_sampler_qt_CXXFLAGS) $(CXXFLAGS) -c -o trivial_sampler_qt-trivial_sampler_qt_gui.o `test -f 'trivial_sampler_qt_gui.cpp' || echo '$(srcdir)/'`trivial_sampler_qt_gui.cpp
trivial_sampler_qt-trivial_sampler_qt_gui.obj: trivial_sampler_qt_gui.cpp
@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(trivial_sampler_qt_CXXFLAGS) $(CXXFLAGS) -MT trivial_sampler_qt-trivial_sampler_qt_gui.obj -MD -MP -MF "$(DEPDIR)/trivial_sampler_qt-trivial_sampler_qt_gui.Tpo" \
@am__fastdepCXX_TRUE@ -c -o trivial_sampler_qt-trivial_sampler_qt_gui.obj `if test -f 'trivial_sampler_qt_gui.cpp'; then $(CYGPATH_W) 'trivial_sampler_qt_gui.cpp'; else $(CYGPATH_W) '$(srcdir)/trivial_sampler_qt_gui.cpp'; fi`; \
@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/trivial_sampler_qt-trivial_sampler_qt_gui.Tpo" "$(DEPDIR)/trivial_sampler_qt-trivial_sampler_qt_gui.Po"; \
@am__fastdepCXX_TRUE@ else rm -f "$(DEPDIR)/trivial_sampler_qt-trivial_sampler_qt_gui.Tpo"; exit 1; \
@am__fastdepCXX_TRUE@ fi
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='trivial_sampler_qt_gui.cpp' object='trivial_sampler_qt-trivial_sampler_qt_gui.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ depfile='$(DEPDIR)/trivial_sampler_qt-trivial_sampler_qt_gui.Po' tmpdepfile='$(DEPDIR)/trivial_sampler_qt-trivial_sampler_qt_gui.TPo' @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(trivial_sampler_qt_CXXFLAGS) $(CXXFLAGS) -c -o trivial_sampler_qt-trivial_sampler_qt_gui.obj `if test -f 'trivial_sampler_qt_gui.cpp'; then $(CYGPATH_W) 'trivial_sampler_qt_gui.cpp'; else $(CYGPATH_W) '$(srcdir)/trivial_sampler_qt_gui.cpp'; fi`
trivial_sampler_qt-trivial_sampler_qt_gui.lo: trivial_sampler_qt_gui.cpp
@am__fastdepCXX_TRUE@ if $(LIBTOOL) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(trivial_sampler_qt_CXXFLAGS) $(CXXFLAGS) -MT trivial_sampler_qt-trivial_sampler_qt_gui.lo -MD -MP -MF "$(DEPDIR)/trivial_sampler_qt-trivial_sampler_qt_gui.Tpo" \
@am__fastdepCXX_TRUE@ -c -o trivial_sampler_qt-trivial_sampler_qt_gui.lo `test -f 'trivial_sampler_qt_gui.cpp' || echo '$(srcdir)/'`trivial_sampler_qt_gui.cpp; \
@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/trivial_sampler_qt-trivial_sampler_qt_gui.Tpo" "$(DEPDIR)/trivial_sampler_qt-trivial_sampler_qt_gui.Plo"; \
@am__fastdepCXX_TRUE@ else rm -f "$(DEPDIR)/trivial_sampler_qt-trivial_sampler_qt_gui.Tpo"; exit 1; \
@am__fastdepCXX_TRUE@ fi
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='trivial_sampler_qt_gui.cpp' object='trivial_sampler_qt-trivial_sampler_qt_gui.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ depfile='$(DEPDIR)/trivial_sampler_qt-trivial_sampler_qt_gui.Plo' tmpdepfile='$(DEPDIR)/trivial_sampler_qt-trivial_sampler_qt_gui.TPlo' @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(LIBTOOL) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(trivial_sampler_qt_CXXFLAGS) $(CXXFLAGS) -c -o trivial_sampler_qt-trivial_sampler_qt_gui.lo `test -f 'trivial_sampler_qt_gui.cpp' || echo '$(srcdir)/'`trivial_sampler_qt_gui.cpp
trivial_sampler_qt-trivial_sampler_qt_gui.moc.o: trivial_sampler_qt_gui.moc.cpp
@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(trivial_sampler_qt_CXXFLAGS) $(CXXFLAGS) -MT trivial_sampler_qt-trivial_sampler_qt_gui.moc.o -MD -MP -MF "$(DEPDIR)/trivial_sampler_qt-trivial_sampler_qt_gui.moc.Tpo" \
@am__fastdepCXX_TRUE@ -c -o trivial_sampler_qt-trivial_sampler_qt_gui.moc.o `test -f 'trivial_sampler_qt_gui.moc.cpp' || echo '$(srcdir)/'`trivial_sampler_qt_gui.moc.cpp; \
@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/trivial_sampler_qt-trivial_sampler_qt_gui.moc.Tpo" "$(DEPDIR)/trivial_sampler_qt-trivial_sampler_qt_gui.moc.Po"; \
@am__fastdepCXX_TRUE@ else rm -f "$(DEPDIR)/trivial_sampler_qt-trivial_sampler_qt_gui.moc.Tpo"; exit 1; \
@am__fastdepCXX_TRUE@ fi
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='trivial_sampler_qt_gui.moc.cpp' object='trivial_sampler_qt-trivial_sampler_qt_gui.moc.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ depfile='$(DEPDIR)/trivial_sampler_qt-trivial_sampler_qt_gui.moc.Po' tmpdepfile='$(DEPDIR)/trivial_sampler_qt-trivial_sampler_qt_gui.moc.TPo' @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(trivial_sampler_qt_CXXFLAGS) $(CXXFLAGS) -c -o trivial_sampler_qt-trivial_sampler_qt_gui.moc.o `test -f 'trivial_sampler_qt_gui.moc.cpp' || echo '$(srcdir)/'`trivial_sampler_qt_gui.moc.cpp
trivial_sampler_qt-trivial_sampler_qt_gui.moc.obj: trivial_sampler_qt_gui.moc.cpp
@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(trivial_sampler_qt_CXXFLAGS) $(CXXFLAGS) -MT trivial_sampler_qt-trivial_sampler_qt_gui.moc.obj -MD -MP -MF "$(DEPDIR)/trivial_sampler_qt-trivial_sampler_qt_gui.moc.Tpo" \
@am__fastdepCXX_TRUE@ -c -o trivial_sampler_qt-trivial_sampler_qt_gui.moc.obj `if test -f 'trivial_sampler_qt_gui.moc.cpp'; then $(CYGPATH_W) 'trivial_sampler_qt_gui.moc.cpp'; else $(CYGPATH_W) '$(srcdir)/trivial_sampler_qt_gui.moc.cpp'; fi`; \
@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/trivial_sampler_qt-trivial_sampler_qt_gui.moc.Tpo" "$(DEPDIR)/trivial_sampler_qt-trivial_sampler_qt_gui.moc.Po"; \
@am__fastdepCXX_TRUE@ else rm -f "$(DEPDIR)/trivial_sampler_qt-trivial_sampler_qt_gui.moc.Tpo"; exit 1; \
@am__fastdepCXX_TRUE@ fi
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='trivial_sampler_qt_gui.moc.cpp' object='trivial_sampler_qt-trivial_sampler_qt_gui.moc.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ depfile='$(DEPDIR)/trivial_sampler_qt-trivial_sampler_qt_gui.moc.Po' tmpdepfile='$(DEPDIR)/trivial_sampler_qt-trivial_sampler_qt_gui.moc.TPo' @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(trivial_sampler_qt_CXXFLAGS) $(CXXFLAGS) -c -o trivial_sampler_qt-trivial_sampler_qt_gui.moc.obj `if test -f 'trivial_sampler_qt_gui.moc.cpp'; then $(CYGPATH_W) 'trivial_sampler_qt_gui.moc.cpp'; else $(CYGPATH_W) '$(srcdir)/trivial_sampler_qt_gui.moc.cpp'; fi`
trivial_sampler_qt-trivial_sampler_qt_gui.moc.lo: trivial_sampler_qt_gui.moc.cpp
@am__fastdepCXX_TRUE@ if $(LIBTOOL) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(trivial_sampler_qt_CXXFLAGS) $(CXXFLAGS) -MT trivial_sampler_qt-trivial_sampler_qt_gui.moc.lo -MD -MP -MF "$(DEPDIR)/trivial_sampler_qt-trivial_sampler_qt_gui.moc.Tpo" \
@am__fastdepCXX_TRUE@ -c -o trivial_sampler_qt-trivial_sampler_qt_gui.moc.lo `test -f 'trivial_sampler_qt_gui.moc.cpp' || echo '$(srcdir)/'`trivial_sampler_qt_gui.moc.cpp; \
@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/trivial_sampler_qt-trivial_sampler_qt_gui.moc.Tpo" "$(DEPDIR)/trivial_sampler_qt-trivial_sampler_qt_gui.moc.Plo"; \
@am__fastdepCXX_TRUE@ else rm -f "$(DEPDIR)/trivial_sampler_qt-trivial_sampler_qt_gui.moc.Tpo"; exit 1; \
@am__fastdepCXX_TRUE@ fi
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='trivial_sampler_qt_gui.moc.cpp' object='trivial_sampler_qt-trivial_sampler_qt_gui.moc.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ depfile='$(DEPDIR)/trivial_sampler_qt-trivial_sampler_qt_gui.moc.Plo' tmpdepfile='$(DEPDIR)/trivial_sampler_qt-trivial_sampler_qt_gui.moc.TPlo' @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(LIBTOOL) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(trivial_sampler_qt_CXXFLAGS) $(CXXFLAGS) -c -o trivial_sampler_qt-trivial_sampler_qt_gui.moc.lo `test -f 'trivial_sampler_qt_gui.moc.cpp' || echo '$(srcdir)/'`trivial_sampler_qt_gui.moc.cpp
mostlyclean-libtool:
-rm -f *.lo
clean-libtool:
-rm -rf .libs _libs
distclean-libtool:
-rm -f libtool
uninstall-info-am:
ETAGS = etags
ETAGSFLAGS =
CTAGS = ctags
CTAGSFLAGS =
tags: TAGS
ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES)
list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \
unique=`for i in $$list; do \
if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
done | \
$(AWK) ' { files[$$0] = 1; } \
END { for (i in files) print i; }'`; \
mkid -fID $$unique
TAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \
$(TAGS_FILES) $(LISP)
tags=; \
here=`pwd`; \
list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \
unique=`for i in $$list; do \
if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
done | \
$(AWK) ' { files[$$0] = 1; } \
END { for (i in files) print i; }'`; \
test -z "$(ETAGS_ARGS)$$tags$$unique" \
|| $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
$$tags $$unique
ctags: CTAGS
CTAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \
$(TAGS_FILES) $(LISP)
tags=; \
here=`pwd`; \
list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \
unique=`for i in $$list; do \
if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
done | \
$(AWK) ' { files[$$0] = 1; } \
END { for (i in files) print i; }'`; \
test -z "$(CTAGS_ARGS)$$tags$$unique" \
|| $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \
$$tags $$unique
GTAGS:
here=`$(am__cd) $(top_builddir) && pwd` \
&& cd $(top_srcdir) \
&& gtags -i $(GTAGS_ARGS) $$here
distclean-tags:
-rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
top_distdir = ..
distdir = $(top_distdir)/$(PACKAGE)-$(VERSION)
distdir: $(DISTFILES)
@srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \
topsrcdirstrip=`echo "$(top_srcdir)" | sed 's|.|.|g'`; \
list='$(DISTFILES)'; for file in $$list; do \
case $$file in \
$(srcdir)/*) file=`echo "$$file" | sed "s|^$$srcdirstrip/||"`;; \
$(top_srcdir)/*) file=`echo "$$file" | sed "s|^$$topsrcdirstrip/|$(top_builddir)/|"`;; \
esac; \
if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \
dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \
if test "$$dir" != "$$file" && test "$$dir" != "."; then \
dir="/$$dir"; \
$(mkinstalldirs) "$(distdir)$$dir"; \
else \
dir=''; \
fi; \
if test -d $$d/$$file; then \
if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \
cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \
fi; \
cp -pR $$d/$$file $(distdir)$$dir || exit 1; \
else \
test -f $(distdir)/$$file \
|| cp -p $$d/$$file $(distdir)/$$file \
|| exit 1; \
fi; \
done
check-am: all-am
check: $(BUILT_SOURCES)
$(MAKE) $(AM_MAKEFLAGS) check-am
all-am: Makefile $(LTLIBRARIES) $(PROGRAMS)
installdirs:
$(mkinstalldirs) $(DESTDIR)$(plugindir) $(DESTDIR)$(bindir) $(DESTDIR)$(lts_uidir) $(DESTDIR)$(trivial_sampler_uidir)
install: $(BUILT_SOURCES)
$(MAKE) $(AM_MAKEFLAGS) install-am
install-exec: install-exec-am
install-data: install-data-am
uninstall: uninstall-am
install-am: all-am
@$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am
installcheck: installcheck-am
install-strip:
$(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
`test -z '$(STRIP)' || \
echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install
mostlyclean-generic:
clean-generic:
-test -z "$(CLEANFILES)" || rm -f $(CLEANFILES)
distclean-generic:
-rm -f $(CONFIG_CLEAN_FILES)
maintainer-clean-generic:
@echo "This command is intended for maintainers to use"
@echo "it deletes files that may require special tools to rebuild."
-test -z "$(BUILT_SOURCES)" || rm -f $(BUILT_SOURCES)
clean: clean-am
clean-am: clean-binPROGRAMS clean-generic clean-libtool \
clean-lts_uiPROGRAMS clean-pluginLTLIBRARIES \
clean-trivial_sampler_uiPROGRAMS mostlyclean-am
distclean: distclean-am
-rm -rf ./$(DEPDIR)
-rm -f Makefile
distclean-am: clean-am distclean-compile distclean-generic \
distclean-libtool distclean-tags
dvi: dvi-am
dvi-am:
info: info-am
info-am:
install-data-am: install-lts_uiPROGRAMS install-pluginLTLIBRARIES \
install-trivial_sampler_uiPROGRAMS
install-exec-am: install-binPROGRAMS
@$(NORMAL_INSTALL)
$(MAKE) $(AM_MAKEFLAGS) install-exec-hook
install-info: install-info-am
install-man:
installcheck-am:
maintainer-clean: maintainer-clean-am
-rm -rf ./$(DEPDIR)
-rm -f Makefile
maintainer-clean-am: distclean-am maintainer-clean-generic
mostlyclean: mostlyclean-am
mostlyclean-am: mostlyclean-compile mostlyclean-generic \
mostlyclean-libtool
pdf: pdf-am
pdf-am:
ps: ps-am
ps-am:
uninstall-am: uninstall-binPROGRAMS uninstall-info-am \
uninstall-lts_uiPROGRAMS uninstall-pluginLTLIBRARIES \
uninstall-trivial_sampler_uiPROGRAMS
.PHONY: CTAGS GTAGS all all-am check check-am clean clean-binPROGRAMS \
clean-generic clean-libtool clean-lts_uiPROGRAMS \
clean-pluginLTLIBRARIES clean-trivial_sampler_uiPROGRAMS ctags \
distclean distclean-compile distclean-generic distclean-libtool \
distclean-tags distdir dvi dvi-am info info-am install \
install-am install-binPROGRAMS install-data install-data-am \
install-exec install-exec-am install-info install-info-am \
install-lts_uiPROGRAMS install-man install-pluginLTLIBRARIES \
install-strip install-trivial_sampler_uiPROGRAMS installcheck \
installcheck-am installdirs maintainer-clean \
maintainer-clean-generic mostlyclean mostlyclean-compile \
mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \
tags uninstall uninstall-am uninstall-binPROGRAMS \
uninstall-info-am uninstall-lts_uiPROGRAMS \
uninstall-pluginLTLIBRARIES \
uninstall-trivial_sampler_uiPROGRAMS
%.moc.cpp: %.h
$(QT_MOC) -o $@ $<
# create symlinks for each plugin to jack-dssi-host
install-exec-hook:
if test -x $(DESTDIR)$(bindir)/jack-dssi-host$(EXEEXT) ; then \
cd $(DESTDIR)$(bindir) ; \
if ! test -x ./trivial_synth$(EXEEXT) ; then \
$(LN_S) jack-dssi-host$(EXEEXT) trivial_synth$(EXEEXT) ; \
fi ; \
if ! test -x ./less_trivial_synth$(EXEEXT) ; then \
$(LN_S) jack-dssi-host$(EXEEXT) less_trivial_synth$(EXEEXT) ; \
fi ; \
if ! test -x ./trivial_sampler$(EXEEXT) ; then \
$(LN_S) jack-dssi-host$(EXEEXT) trivial_sampler$(EXEEXT) ; \
fi ; \
fi
# Tell versions [3.59,3.63) of GNU make to not export all variables.
# Otherwise a system limit (for SysV at least) may be exceeded.
.NOEXPORT:
|