~christophe-andral/wm2midi/trunk

« back to all changes in this revision

Viewing changes to src/Makefile.am

  • Committer: Christophe Andral
  • Date: 2010-03-17 06:45:17 UTC
  • Revision ID: christophe@andral.fr-20100317064517-fzejb2w81nw0olyt
InitialĀ sourceĀ import

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
## Process this file with automake to produce Makefile.in
 
2
 
 
3
## Created by Anjuta
 
4
 
 
5
uidir = $(datadir)/wm2midi/ui
 
6
ui_DATA = wm2midi.ui
 
7
 
 
8
AM_CPPFLAGS = \
 
9
        -DPACKAGE_LOCALE_DIR=\""$(prefix)/$(DATADIRNAME)/locale"\" \
 
10
        -DPACKAGE_SRC_DIR=\""$(srcdir)"\" \
 
11
        -DPACKAGE_DATA_DIR=\""$(datadir)"\" \
 
12
        $(WM2MIDI_CFLAGS)
 
13
 
 
14
AM_CFLAGS =\
 
15
         -Wall\
 
16
         -g
 
17
 
 
18
bin_PROGRAMS = wm2midi
 
19
 
 
20
wm2midi_SOURCES = \
 
21
        main.cc  \
 
22
        log.h  \
 
23
        log.cc  \
 
24
        root.h  \
 
25
        root.cc  \
 
26
        bloc.h  \
 
27
        bloc.cc \
 
28
        wiimote.h  \
 
29
        wiimote.cc  \
 
30
        chain.h  \
 
31
        chain.cc  \
 
32
        emitter.h  \
 
33
        emitter.cc  \
 
34
        receiver.h  \
 
35
        receiver.cc  \
 
36
        port.h  \
 
37
        port.cc  \
 
38
        plugin.h  \
 
39
        plugin.cc  \
 
40
        plugin_transformation.cc
 
41
 
 
42
wm2midi_LDADD = \
 
43
        $(WM2MIDI_LIBS) \
 
44
        -lcwiid
 
45
 
 
46
EXTRA_DIST = $(ui_DATA)
 
47
 
 
48
SUBDIRS = 
 
49
 
 
50
# Remove ui directory on uninstall
 
51
uninstall-local:
 
52
        -rm -r $(uidir)
 
53
        -rm -r $(datadir)/wm2midi