~desrt/indicator-appmenu/hud-performance

« back to all changes in this revision

Viewing changes to tools-vala/Makefile.am

  • Committer: Ted Gould
  • Date: 2012-03-21 17:27:26 UTC
  • mto: This revision was merged to the branch mainline in revision 188.
  • Revision ID: ted@gould.cx-20120321172726-6swz7k7xwr4bzqk1
Moving the build system to point to the new directory

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
 
 
2
EXTRA_DIST = 
 
3
bin_PROGRAMS = \
 
4
        hud-gtk
 
5
 
 
6
####################
 
7
# hud-gtk
 
8
####################
 
9
 
 
10
hudgtkdatadir = $(datadir)/hud-gtk
 
11
hudgtkdata_DATA = hud-gtk.ui
 
12
EXTRA_DIST += hud-gtk.ui
 
13
 
 
14
hud_gtk_SOURCES = \
 
15
        hud-gtk.vala
 
16
 
 
17
hud_gtk_VALAFLAGS = --pkg gtk+-3.0
 
18
hud_gtk_CFLAGS = \
 
19
        -DHUD_GTK_DATADIR=\""$(hudgtkdatadir)"\" \
 
20
        $(gtk_CFLAGS)
 
21
 
 
22
hud_gtk_LDADD = \
 
23
        $(gtk_LIBS)
 
24