[go: up one dir, main page]

Menu

[9b8379]: / lat / Makefile.am  Maximize  Restore  History

Download this file

125 lines (106 with data), 2.6 kB

  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
SUBDIRS = . plugins
if BUILD_AVAHI
AVAHI_CSFLAGS = -define:ENABLE_AVAHI
AVAHI_CSFILES = \
$(srcdir)/ServiceFinder.cs
AVAHI_REFERENCES = $(AVAHI_LIBS)
endif
if BUILD_NETWORKMANAGER
NETWORKMANAGER_CSFLAGS = -define:ENABLE_NETWORKMANAGER
NETWORKMANAGER_REFERENCES = \
$(top_builddir)/network-manager/network-manager.dll
endif
CSC = $(MCS) -codepage:utf8 $(MCS_FLAGS) $(AVAHI_CSFLAGS) $(NETWORKMANAGER_CSFLAGS)
ASSEMBLY = lat
CSFILES = \
AboutDialog.cs \
AddObjectClassDialog.cs \
AssemblyInfo.cs \
AttributeEditorWidget.cs \
ConnectDialog.cs \
ConnectionManager.cs \
CreateEntryDialog.cs \
Defines.cs \
LDIF.cs \
LdapEntryAnalyzer.cs \
LdapSearch.cs \
LdapServer.cs \
LdapTreeView.cs \
Log.cs \
LoginDialog.cs \
Main.cs \
MassEditDialog.cs \
NewEntryDialog.cs \
PasswordDialog.cs \
Preferences.cs \
ProfileDialog.cs \
RenameEntryDialog.cs \
SMBPassword.cs \
SambaPopulateDialog.cs \
SchemaTreeView.cs \
SearchBuilderDialog.cs \
SearchResultsTreeView.cs \
SelectContainerDialog.cs \
SelectGroupsDialog.cs \
ServerData.cs \
Templates.cs \
TemplatesDialog.cs \
TemplateEditorDialog.cs \
TimeDateDialog.cs \
Util.cs \
ViewDataTreeView.cs \
ViewDialog.cs \
ViewPluginManager.cs \
ViewsTreeView.cs \
Window.cs
SOURCES_BUILD = $(addprefix $(srcdir)/, $(CSFILES))
REFERENCES = \
../gnome-keyring-glue/gnome-keyring-glue.dll \
$(NETWORKMANAGER_REFERENCES) \
Mono.Posix \
Mono.Security \
Novell.Directory.Ldap
REFERENCES_BUILD = $(addprefix -r:, $(REFERENCES))
RESOURCES = \
lat.glade \
lat.png \
contact-new.png \
contact-new-48x48.png \
edit-find.png \
edit-find-48x48.png \
locked16x16.png \
locked-48x48.png \
stock_person.png \
text-x-generic.png \
unlocked16x16.png \
users.png \
x-directory-normal.png \
x-directory-remote-server.png \
x-directory-remote-workgroup.png \
mail-message-new.png \
document-save.png \
go-home.png \
x-directory-remote-server-48x48.png
RESOURCES_BUILD = $(addprefix /resource:$(top_srcdir)/resources/, $(RESOURCES))
$(ASSEMBLY).exe: $(SOURCES_BUILD) $(AVAHI_CSFILES)
$(CSC) -out:$@ $(SOURCES_BUILD) $(AVAHI_CSFILES) $(REFERENCES_BUILD) $(AVAHI_REFERENCES) $(RESOURCES_BUILD) $(GTKSHARP_LIBS)
all: $(ASSEMBLY).exe
ASSEMBLYlibdir = $(pkglibdir)
ASSEMBLYlib_DATA = $(ASSEMBLY).exe
man_MANS = \
$(ASSEMBLY).1
bin_SCRIPTS = $(ASSEMBLY)
EXTRA_DIST = \
$(CSFILES) \
ServiceFinder.cs \
$(man_MANS) \
AssemblyInfo.cs.in \
Defines.cs.in \
$(ASSEMBLY).in
CLEANFILES = \
$(ASSEMBLY).exe \
$(ASSEMBLY).exe.mdb
DISTCLEANFILES = \
AssemblyInfo.cs \
Defines.cs \
$(ASSEMBLY)