source: trunk/third/evolution/Makefile.am @ 18142

Revision 18142, 2.4 KB checked in by ghudson, 21 years ago (diff)
This commit was generated by cvs2svn to compensate for changes in r18141, which included commits to RCS files with non-trunk default branches.
Line 
1changelogs =                    \
2        ChangeLog
3
4confexecdir = $(libdir)
5confexec_DATA =                         \
6        camelConf.sh                    \
7        evolution_shellConf.sh          \
8        evolution_addressbookConf.sh    \
9        evolution_calendarConf.sh
10
11EXTRA_DIST =                    \
12        AUTHORS                 \
13        $(changelogs)           \
14        COPYING-DOCS            \
15        README                  \
16        HACKING                 \
17        MAINTAINERS             \
18        NEWS                    \
19        NEWS-1.0                \
20        xml-i18n-merge.in       \
21        xml-i18n-update.in      \
22        xml-i18n-extract.in     \
23        $(confexec_DATA:.sh=.sh.in)
24
25SUBDIRS =                       \
26        intl                    \
27        macros                  \
28        data                    \
29        po                      \
30        e-util                  \
31        libical                 \
32        widgets                 \
33        shell                   \
34        camel                   \
35        filter                  \
36        libversit               \
37        libwombat               \
38        addressbook             \
39        composer                \
40        mail                    \
41        calendar                \
42        wombat                  \
43        importers               \
44        my-evolution            \
45        art                     \
46        sounds                  \
47        ui                      \
48        default_user            \
49        views                   \
50        tools                   \
51        doc                     \
52        help                    \
53        omf-install
54
55%Conf.sh: %Conf.sh.in Makefile
56        sed -e 's?\@EVOLUTION_LIBDIR\@?$(EVOLUTION_LIBDIR)?g' \
57            -e 's?\@EVOLUTION_DATADIR\@?$(EVOLUTION_DATADIR)?g' \
58            -e 's?\@EVOLUTION_INCLUDEDIR\@?$(EVOLUTION_INCLUDEDIR)?g' \
59            -e 's?\@CAMEL_INCLUDEDIR\@?$(CAMEL_INCLUDEDIR)?g' \
60            -e 's?\@VERSION\@?$(VERSION)?g' \
61            -e 's?\@privlibdir\@?$(privlibdir)?g' \
62            -e 's?\@SHELL_LIBS\@?$(SHELL_LIBS)?g' \
63            -e 's?\@SHELL_CFLAGS\@?$(SHELL_CFLAGS)?g' \
64            -e 's?\@CAMEL_LIBS\@?$(CAMEL_LIBS)?g' \
65            -e 's?\@CAMEL_CFLAGS\@?$(CAMEL_CFLAGS)?g' \
66            -e 's?\@LDAP_LIBS\@?$(LDAP_LIBS)?g' \
67            -e 's?\@LDAP_CFLAGS\@?$(LDAP_CFLAGS)?g' \
68            -e 's?\@EVOLUTION_ADDRESSBOOK_LIBS\@?$(EVOLUTION_ADDRESSBOOK_LIBS)?g' \
69            -e 's?\@EVOLUTION_ADDRESSBOOK_CFLAGS\@?$(EVOLUTION_ADDRESSBOOK_CFLAGS)?g' \
70            -e 's?\@EVOLUTION_CALENDAR_LIBS\@?$(EVOLUTION_CALENDAR_LIBS)?g' \
71            -e 's?\@EVOLUTION_CALENDAR_CFLAGS\@?$(EVOLUTION_CALENDAR_CFLAGS)?g' \
72              < $(srcdir)/$< > $@.tmp \
73          && mv $@.tmp $@
74
75# CDE Stuff
76
77if HAVE_DTAPPINTEGRATE
78
79# This installs Evolution into the Application Manager on CDE
80dtappintegrate:
81        ( cd data && make dtappintegrate )
82
83# ...And this uninstalls it
84dtappunintegrate:
85        ( cd data ; make dtappunintegrate )
86
87# Install/uninstall for CDE
88cde-install: install dtappintegrate
89cde-uninstall: dtappunintegrate uninstall
90
91endif
Note: See TracBrowser for help on using the repository browser.