~charlesk/indicator-application/nogtk2

« back to all changes in this revision

Viewing changes to src/Makefile.am

  • Committer: Ted Gould
  • Date: 2009-10-13 20:48:42 UTC
  • mfrom: (1.1.7 build-system)
  • Revision ID: ted@canonical.com-20091013204842-250ebzxxhk8vgchu
A basical build system and basic files.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
 
 
2
libexec_PROGRAMS = indicator-custom-service
 
3
 
 
4
##################################
 
5
# Indicator
 
6
##################################
 
7
 
 
8
customlibdir = $(INDICATORDIR)
 
9
customlib_LTLIBRARIES = libcustom.la
 
10
libcustom_la_SOURCES = \
 
11
        indicator-custom.c
 
12
libcustom_la_CFLAGS = $(INDICATOR_CFLAGS) \
 
13
        -Wall \
 
14
        -Wl,-Bsymbolic-functions \
 
15
        -Wl,-z,defs \
 
16
        -Wl,--as-needed \
 
17
        -Werror
 
18
libcustom_la_LIBADD = $(INDICATOR_LIBS)
 
19
libcustom_la_LDFLAGS = -module -avoid-version
 
20
 
 
21
##################################
 
22
# Service
 
23
##################################
 
24
 
 
25
indicator_custom_service_SOURCES = \
 
26
        custom-service.c
 
27
indicator_custom_service_CFLAGS = \
 
28
        $(INDICATOR_CFLAGS) \
 
29
        -Wall -Werror
 
30
indicator_custom_service_LDADD = \
 
31
        $(INDICATOR_LIBS)