-
Notifications
You must be signed in to change notification settings - Fork 29
/
Copy pathMakefile.am
88 lines (73 loc) · 2.79 KB
/
Makefile.am
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
SUBDIRS = man sounds pixmaps lib src po
### Don't execute make in the help subdirectory if BULD_DOC is set
if HAVE_GNOME_DOC_UTILS
SUBDIRS += help
endif
### Intltool on the desktop and on the schemas files
@INTLTOOL_DESKTOP_RULE@
@INTLTOOL_SCHEMAS_RULE@
DESKTOP_IN_FILE=@[email protected]
DESKTOP_FILE=@[email protected]
SCHEMAS_IN_IN_FILE = @[email protected]
SCHEMAS_FILE = @[email protected]
### Win32 files
WIN32_DIST = \
win32/ico/ekiga.ico \
win32/ico/ekiga-uninstall.ico \
win32/directx/Amvideo.h \
win32/directx/control.h \
win32/directx/ddraw.h \
win32/directx/dshow.h \
win32/directx/dsound.h \
win32/directx/dxerr9.h \
win32/directx/ksuuids.h \
win32/directx/mingw_dshow_port.h \
win32/directx/strmif.h \
win32/directx/uuids.h \
win32/ekiga-rc.rc \
win32/Makefile \
win32/diff/README \
win32/diff/ekiga_sticonmenu1.patch \
win32/diff/ekiga_sticonmenu2.patch \
win32/diff/ekiga_sticonmenu3.patch \
win32/diff/ptlib_vistastuck.diff \
win32/nsisinstaller/ekiga.nsi \
win32/nsisinstaller/language_files/hungarian.nsh \
win32/nsisinstaller/language_files/english.nsh \
win32/nsisinstaller/language_files/french.nsh \
win32/nsisinstaller/language_files/romanian.nsh \
win32/nsisinstaller/language_files/dutch.nsh \
win32/nsisinstaller/langmacros.nsh
### Extra dist
EXTRA_DIST = \
$(DESKTOP_FILE) \
doc/using_dbus.html \
gnome-doc-utils.make \
FAQ \
README \
LICENSE \
MAINTAINERS \
$(SCHEMAS_FILE) \
lib/gmmarshallers.list \
$(WIN32_DIST)
Applicationsdir = $(datadir)/applications
Applications_DATA = $(DESKTOP_FILE)
### Dist Clear
DISTCLEANFILES=gnome-doc-utils.make ekiga.desktop ekiga.schemas
### Install the schemas file in /etc if GCONF support is not compiled in,
### and do not install the schemas at all
if HAVE_GCONF
schemasdir = $(GCONF_SCHEMA_FILE_DIR)
schemas_DATA = $(SCHEMAS_FILE)
else
schemasdir = $(sysconfdir)/@PACKAGE_NAME@
schemas_DATA = $(SCHEMAS_FILE)
endif
install-schemas: @[email protected]
GCONF_CONFIG_SOURCE=$(GCONF_SCHEMA_CONFIG_SOURCE) gconftool-2 --makefile-install-rule $(SCHEMAS_FILE) 2>&1 > /dev/null
gconftool-2 --shutdown
if GCONF_SCHEMAS_INSTALL
install-data-local: install-schemas
else
install-data-local:
endif