-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile.am
147 lines (125 loc) · 3.89 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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
################################################################################
# Copyright 2008 VMware, Inc. All rights reserved.
#
# This file is part of VMware View Open Client.
#
# This program is free software; you can redistribute it and/or modify it
# under the terms of the GNU Lesser General Public License as published
# by the Free Software Foundation version 2.1 and no later version.
#
# This program is distributed in the hope that it will be useful, but
# WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
# or FITNESS FOR A PARTICULAR PURPOSE. See the Lesser GNU General Public
# License for more details.
#
# You should have received a copy of the GNU Lesser General Public License
# along with this program; if not, write to the Free Software Foundation, Inc.,
# 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
#################################################################################
# This is a non-recursive automake file.
#
# The style was inspired by Robert Collins, as mentioned here:
#
# http://sources.redhat.com/ml/automake/2001-08/msg00061.html
#
# And the original Recursive Make Considered Harmful:
#
# http://www.pcug.org.au/~millerp/rmch/recu-make-cons-harm.html
#
# Tell automake to use the full path for our object files
AUTOMAKE_OPTIONS := subdir-objects
# Tell autoreconf to run aclocal with -I m4
ACLOCAL_AMFLAGS = -I m4
# Teach intltool about NS_
export XGETTEXT_ARGS := --keyword=NS_
NULL :=
BUILT_SOURCES :=
CLEANFILES :=
CONFIGURE_DEPENDENCIES :=
CONFIG_STATUS_DEPENDENCIES :=
TESTS :=
AM_CPPFLAGS =
AM_CPPFLAGS += -I$(srcdir)/lib/open-vm-tools/include
AM_CPPFLAGS += -I$(srcdir)/lib/bora/include
if VIEW_GTK
AM_CPPFLAGS += $(GTK_CFLAGS)
else
AM_CPPFLAGS += $(GLIB_CFLAGS)
endif
dash := -
colon := :
empty :=
space := $(empty) $(empty)
applicationdir := $(datadir)/applications
pixmapsdir := $(datadir)/pixmaps
helpdir := $(docdir)/help
helpdedir := $(helpdir)/de
helpendir := $(helpdir)/en
helpfrdir := $(helpdir)/fr
helpjadir := $(helpdir)/ja
helpzh_CNdir := $(helpdir)/zh_CN
patchdir := $(docdir)/patches
application_DATA = $(desktop_in_files:.desktop.in=.desktop)
bin_PROGRAMS :=
bin_SCRIPTS :=
desktop_in_files :=
dist_bin_SCRIPTS :=
doc_DATA :=
dist_doc_DATA :=
dist_help_DATA :=
dist_helpde_DATA :=
dist_helpen_DATA :=
dist_helpfr_DATA :=
dist_helpja_DATA :=
dist_helpzh_CN_DATA :=
dist_patch_DATA :=
man_MANS :=
dist_noinst_DATA =
dist_noinst_HEADERS :=
dist_noinst_SCRIPTS :=
dist_pdf_DATA :=
noinst_LIBRARIES :=
noinst_PROGRAMS :=
pixmaps_DATA :=
include_subdirs :=
SUBDIRS := . po
DIST_SUBDIRS := $(SUBDIRS) $(include_subdirs)
@INTLTOOL_DESKTOP_RULE@
ALL =
all: $(ALL)
include lib/open-vm-tools/dict/Makefile.inc
include lib/open-vm-tools/err/Makefile.inc
include lib/open-vm-tools/file/Makefile.inc
include lib/open-vm-tools/include/Makefile.inc
include lib/open-vm-tools/misc/Makefile.inc
include lib/open-vm-tools/panic/Makefile.inc
include lib/open-vm-tools/panicDefault/Makefile.inc
include lib/open-vm-tools/string/Makefile.inc
include lib/open-vm-tools/stubs/Makefile.inc
include lib/open-vm-tools/unicode/Makefile.inc
include lib/open-vm-tools/user/Makefile.inc
include lib/bora/basicHttp/Makefile.inc
include lib/bora/dui/Makefile.inc
include lib/bora/file/Makefile.inc
include lib/bora/include/Makefile.inc
include lib/bora/log/Makefile.inc
include lib/bora/misc/Makefile.inc
include lib/bora/nothread/Makefile.inc
include lib/bora/poll/Makefile.inc
include lib/bora/pollDefault/Makefile.inc
include lib/bora/pollGtk/Makefile.inc
include lib/bora/posix/Makefile.inc
include lib/bora/productState/Makefile.inc
include lib/bora/sig/Makefile.inc
include lib/bora/stubs/Makefile.inc
include lib/bora/user/Makefile.inc
include lib/libp11/Makefile.inc
include lib/gtm/Makefile.inc
include Makefile.inc
include cocoa/Makefile.inc
include doc/Makefile.inc
include gtk/Makefile.inc
include tunnel/Makefile.inc
if VIEW_CVP
include cvp/Makefile.inc
endif