~ubuntu-branches/ubuntu/quantal/muse/quantal

« back to all changes in this revision

Viewing changes to synti/vam/Makefile.am

  • Committer: Bazaar Package Importer
  • Author(s): Daniel Kobras
  • Date: 2005-08-23 17:19:39 UTC
  • mto: (4.1.1 breezy) (1.1.9) (10.1.6 sid)
  • mto: This revision was merged to the branch mainline in revision 5.
  • Revision ID: james.westby@ubuntu.com-20050823171939-hd8fgzokb4dbj007
Tags: upstream-0.7.1+0.7.2pre2
ImportĀ upstreamĀ versionĀ 0.7.1+0.7.2pre2

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
include $(top_srcdir)/common.am
2
2
include $(top_srcdir)/synti/synti-install.am
3
3
 
4
 
synthi_PROGRAMS = vam
 
4
AM_CXXFLAGS += -O3 -ffast-math -fno-exceptions
 
5
 
5
6
synthi_LTLIBRARIES = vam.la
6
7
 
7
 
vam_la_SOURCES = \
8
 
        vam.cpp vam.h \
9
 
        $(top_srcdir)/driver/mess.cpp
 
8
vam_la_SOURCES     = vam.cpp vam.h vamgui.cpp vamgui.h \
 
9
                       vamguibase.ui \
 
10
                       $(top_srcdir)/muse/xml.cpp
 
11
 
 
12
nodist_vam_la_SOURCES = moc_vamgui.cpp
 
13
 
 
14
vam_la_LIBADD  = ../libsynti/libsynti.la
10
15
vam_la_LDFLAGS = -module -avoid-version
11
16
 
12
 
vam_LDFLAGS = -fexceptions $(X_LIBS) $(QT_LIBS)
13
 
 
14
 
BUILT_SOURCES += \
15
 
        $(top_srcdir)/widgets/moc_filedialog.cpp
16
 
 
17
 
dist_vam_SOURCES = \
18
 
        vamgui.cpp vamgui.h \
19
 
        vamguibase.ui \
20
 
        fdialogbuttons.ui \
21
 
        $(top_srcdir)/driver/midirawin.cpp \
22
 
        $(top_srcdir)/xml.cpp \
23
 
        $(top_srcdir)/widgets/filedialog.cpp
24
 
nodist_vam_SOURCES = \
25
 
        moc_vamgui.cpp \
26
 
        $(top_srcdir)/widgets/moc_filedialog.cpp
27
 
 
28
17
EXTRA_DIST = README TODO ChangeLog
 
18