~ubuntu-branches/ubuntu/oneiric/gconf/oneiric-proposed

« back to all changes in this revision

Viewing changes to examples/Makefile.am

  • Committer: Bazaar Package Importer
  • Author(s): Takuo KITAME
  • Date: 2002-03-17 01:51:39 UTC
  • Revision ID: james.westby@ubuntu.com-20020317015139-z4f8fdg1hoe049g0
Tags: upstream-1.0.9
ImportĀ upstreamĀ versionĀ 1.0.9

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
INCLUDES=-I$(top_srcdir) -I$(top_srcdir)/gconf -I$(top_builddir)/gconf \
 
2
        -I$(top_srcdir)/wrappers/gtk -I$(top_builddir)/wrappers/gtk \
 
3
        $(GLIB_CFLAGS) $(OAF_CFLAGS) $(GMODULE_CFLAGS) $(ORBIT_CFLAGS) $(GTK_CFLAGS) \
 
4
        -DGCONF_SRCDIR=\""$(absolute_top_srcdir)"\" -DGCONF_SYSCONFDIR=\""$(sysconfdir)"\"
 
5
 
 
6
EFENCE=
 
7
 
 
8
if GTK
 
9
GTK_EXAMPLES=basic-gconf-app simple-view simple-controller
 
10
else
 
11
GTK_EXAMPLES=
 
12
endif
 
13
 
 
14
noinst_PROGRAMS=$(GTK_EXAMPLES)
 
15
 
 
16
GTK_EXAMPLES_LINK= $(EFENCE) $(INTLLIBS) $(ORBIT_LIBS) $(GTK_LIBS) $(top_builddir)/gconf/libgconf-$(MAJOR_VERSION).la $(top_builddir)/wrappers/gtk/libgconf-gtk-$(MAJOR_VERSION).la $(EFENCE)
 
17
 
 
18
basic_gconf_app_SOURCES = basic-gconf-app.c
 
19
 
 
20
basic_gconf_app_LDADD = $(GTK_EXAMPLES_LINK)
 
21
 
 
22
simple_view_SOURCES = simple-view.c
 
23
 
 
24
simple_view_LDADD = $(GTK_EXAMPLES_LINK)
 
25
 
 
26
simple_controller_SOURCES = simple-controller.c
 
27
 
 
28
simple_controller_LDADD = $(GTK_EXAMPLES_LINK)
 
29
 
 
30
 
 
31