~ubuntu-branches/ubuntu/utopic/pcmanfm/utopic

« back to all changes in this revision

Viewing changes to src/Makefile.am

  • Committer: Bazaar Package Importer
  • Author(s): Andrew Lee
  • Date: 2006-10-16 16:47:04 UTC
  • Revision ID: james.westby@ubuntu.com-20061016164704-w8zobnrvdxc7rvm5
Tags: upstream-0.3.2.1
ImportĀ upstreamĀ versionĀ 0.3.2.1

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
## Process this file with automake to produce Makefile.in
 
2
 
 
3
INCLUDES = \
 
4
        -I$(top_srcdir)/src/xdgmime \
 
5
        -I$(top_srcdir)/src/compat \
 
6
        -I$(top_srcdir)/src/ptk \
 
7
        -I$(top_srcdir)/src/vfs \
 
8
        -I$(top_srcdir)/src/libmd5-rfc \
 
9
        -I$(top_srcdir)/src/desktop \
 
10
        -I$(top_srcdir)/src/inotify \
 
11
        -DPACKAGE_DATA_DIR=\""$(datadir)"\" \
 
12
        -DPACKAGE_LOCALE_DIR=\""$(prefix)/$(DATADIRNAME)/locale"\" \
 
13
        @PACKAGE_CFLAGS@ @HAL_CFLAGS@ 
 
14
 
 
15
bin_PROGRAMS = pcmanfm
 
16
 
 
17
XDGMIME_SOURCES= \
 
18
        xdgmime/xdgmimealias.c xdgmime/xdgmimealias.h \
 
19
        xdgmime/xdgmime.c xdgmime/xdgmime.h \
 
20
        xdgmime/xdgmimecache.c xdgmime/xdgmimecache.h \
 
21
        xdgmime/xdgmimeglob.c xdgmime/xdgmimeglob.h \
 
22
        xdgmime/xdgmimeint.c xdgmime/xdgmimeint.h \
 
23
        xdgmime/xdgmimemagic.c xdgmime/xdgmimemagic.h \
 
24
        xdgmime/xdgmimeparent.c xdgmime/xdgmimeparent.h
 
25
 
 
26
MD5_SOURCES= \
 
27
        libmd5-rfc/md5.c libmd5-rfc/md5.h
 
28
 
 
29
VFS_SOURCES= \
 
30
        vfs/vfs-file-monitor.c vfs/vfs-file-monitor.h \
 
31
        vfs/vfs-mime-type.c vfs/vfs-mime-type.h \
 
32
        vfs/vfs-file-info.c vfs/vfs-file-info.h \
 
33
        vfs/vfs-dir.c vfs/vfs-dir.h \
 
34
        vfs/vfs-app-desktop.c vfs/vfs-app-desktop.h \
 
35
        vfs/vfs-file-task.c vfs/vfs-file-task.h \
 
36
        vfs/vfs-volume.c vfs/vfs-volume.h \
 
37
        vfs/vfs-execute.c vfs/vfs-execute.h
 
38
 
 
39
PTK_SOURCES= \
 
40
        ptk/ptk-file-browser.c ptk/ptk-file-browser.h \
 
41
        ptk/ptk-file-list.c ptk/ptk-file-list.h \
 
42
        ptk/ptk-icon-view.c ptk/ptk-icon-view.h \
 
43
        ptk/ptk-path-entry.c ptk/ptk-path-entry.h \
 
44
        ptk/ptk-text-renderer.c ptk/ptk-text-renderer.h \
 
45
        ptk/exo-marshal.c ptk/exo-marshal.h \
 
46
        ptk/exo-string.c ptk/exo-string.h \
 
47
        ptk/ptk-file-icon-renderer.c ptk/ptk-file-icon-renderer.h \
 
48
        ptk/ptk-utils.c ptk/ptk-utils.h \
 
49
        ptk/ptk-dir-tree-view.c ptk/ptk-dir-tree-view.h \
 
50
        ptk/ptk-dir-tree.c ptk/ptk-dir-tree.h \
 
51
        ptk/ptk-location-view.c ptk/ptk-location-view.h \
 
52
        ptk/ptk-bookmarks.c ptk/ptk-bookmarks.h \
 
53
        ptk/ptk-input-dialog.c ptk/ptk-input-dialog.h \
 
54
        ptk/ptk-file-task.c ptk/ptk-file-task.h \
 
55
        ptk/ptk-file-archiver.c ptk/ptk-file-archiver.h \
 
56
        ptk/ptk-console-output.c ptk/ptk-console-output.h \
 
57
        ptk/ptk-clipboard.c ptk/ptk-clipboard.h \
 
58
        ptk/ptk-file-menu.c ptk/ptk-file-menu.h \
 
59
        ptk/ptk-file-misc.c ptk/ptk-file-misc.h
 
60
 
 
61
DESKTOP_SOURCES= \
 
62
        desktop/fm-desktop.c desktop/fm-desktop.h \
 
63
        desktop/working-area.c desktop/working-area.h
 
64
 
 
65
INOTIFY_SOURCES= \
 
66
    inotify/inotify-syscalls.h \
 
67
    inotify/linux-inotify.h
 
68
 
 
69
pcmanfm_SOURCES = \
 
70
        $(XDGMIME_SOURCES) \
 
71
        $(PTK_SOURCES) \
 
72
        $(INOTIFY_SOURCES) \
 
73
        $(VFS_SOURCES) \
 
74
        $(MD5_SOURCES) \
 
75
        $(DESKTOP_SOURCES) \
 
76
        compat/glib-mem.h \
 
77
        main.c \
 
78
        glade-support.c glade-support.h \
 
79
        main-window.c main-window.h \
 
80
        file-properties.c file-properties.h \
 
81
        file-properties-ui.c file-properties-ui.h \
 
82
        settings.c settings.h \
 
83
        pref-dialog.c pref-dialog.h \
 
84
        pref-dialog-ui.c pref-dialog-ui.h \
 
85
        edit-bookmarks.c edit-bookmarks.h \
 
86
        app-chooser-dialog.c app-chooser-dialog.h \
 
87
        app-chooser-dialog-ui.c app-chooser-dialog-ui.h \
 
88
        file-assoc-dlg.c file-assoc-dlg.h \
 
89
        file-assoc-dlg-ui.c file-assoc-dlg-ui.h
 
90
 
 
91
pcmanfm_LDADD = @PACKAGE_LIBS@ $(INTLLIBS) @FAM_LIBS@ @HAL_LIBS@
 
92
 
 
93
# pcmanfm_wrapper_SOURCES = pcmanfm-wrapper.c
 
94
# pcmanfm_wrapper_LDADD = @PACKAGE_LIBS@ $(INTLLIBS)
 
95
 
 
96