~ubuntu-branches/debian/squeeze/galeon/squeeze

« back to all changes in this revision

Viewing changes to embed/Makefile.am

  • Committer: Bazaar Package Importer
  • Author(s): Mark Howard
  • Date: 2004-06-06 09:02:01 UTC
  • Revision ID: james.westby@ubuntu.com-20040606090201-yhx6ruhq8um7ggs2
Tags: upstream-1.3.15
ImportĀ upstreamĀ versionĀ 1.3.15

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
INCLUDES = \
 
2
        -I$(top_srcdir)/utils       \
 
3
        -I$(top_builddir)/utils       \
 
4
        -I$(top_srcdir)/mozilla     \
 
5
        -I$(MOZILLA_INCLUDE_ROOT)/gtkembedmoz \
 
6
        $(gtkhtmlembed_includes)        \
 
7
        $(GALEON_DEPENDENCY_CFLAGS) \
 
8
        -DSHARE_DIR=\"$(pkgdatadir)\"
 
9
 
 
10
if ENABLE_GTKHTML_EMBED
 
11
gtkhtmlembed_includes = -I$(top_srcdir)/gtkhtml
 
12
endif
 
13
 
 
14
noinst_LTLIBRARIES = libembed.la
 
15
 
 
16
libembed_la_SOURCES = \
 
17
        galeon-embed-types.h            \
 
18
        js-console.c                    \
 
19
        js-console.h                    \
 
20
        cookie-info.c                   \
 
21
        cookie-info.h                   \
 
22
        downloader-view.c               \
 
23
        downloader-view.h               \
 
24
        global-history.c                \
 
25
        global-history.h                \
 
26
        galeon-embed.c                  \
 
27
        galeon-embed.h                  \
 
28
        galeon-embed-shell.c            \
 
29
        galeon-embed-shell.h            \
 
30
        galeon-embed-persist.c          \
 
31
        galeon-embed-persist.h          \
 
32
        galeon-embed-popup.c            \
 
33
        galeon-embed-popup.h            \
 
34
        galeon-embed-popup-control.c    \
 
35
        galeon-embed-popup-control.h    \
 
36
        galeon-embed-event.c            \
 
37
        galeon-embed-event.h            \
 
38
        galeon-embed-utils.c            \
 
39
        galeon-embed-utils.h            \
 
40
        galeon-embed-dialog.c           \
 
41
        galeon-embed-dialog.h           \
 
42
        galeon-encodings.h              \
 
43
        galeon-encodings.c              \
 
44
        find-dialog.c                   \
 
45
        find-dialog.h                   \
 
46
        print-dialog.c                  \
 
47
        print-dialog.h                  \
 
48
        galeon-embed-prefs.h            \
 
49
        galeon-embed-helper-list.c      \
 
50
        galeon-embed-helper-list.h
 
51