Mono.Zeroconf – Blame information for rev 1

Subversion Repositories:
Rev:
Rev Author Line No. Line
1 office 1 ASSEMBLY_NAME = Mono.Zeroconf.Providers.Bonjour
2 ASSEMBLY = $(ASSEMBLY_NAME).dll
3  
4 MONO_ZEROCONF_PROVIDERS_BONJOUR_SRC = \
5 BrowseService.cs \
6 Native.cs \
7 RegisterService.cs \
8 ServiceBrowser.cs \
9 ServiceClass.cs \
10 Service.cs \
11 ServiceError.cs \
12 ServiceErrorException.cs \
13 ServiceFlags.cs \
14 ServiceRef.cs \
15 ServiceType.cs \
16 TxtRecord.cs \
17 TxtRecordEnumerator.cs \
18 ZeroconfProvider.cs
19  
20 SOURCES_PRE = \
21 $(foreach source,$(MONO_ZEROCONF_PROVIDERS_BONJOUR_SRC),Mono.Zeroconf.Providers.Bonjour/$(source))
22 SOURCES = \
23 $(top_srcdir)/src/AssemblyInfo.cs \
24 $(foreach source,$(SOURCES_PRE),$(srcdir)/$(source))
25  
26 if BUILD_MDNSRESPONDER
27  
28 assemblydir = $(libdir)/mono-zeroconf
29 assembly_SCRIPTS = $(ASSEMBLY) $(ASSEMBLY).mdb $(ASSEMBLY).config
30  
31 all: $(ASSEMBLY)
32  
33 $(ASSEMBLY): $(top_builddir)/src/Mono.Zeroconf/Mono.Zeroconf.dll $(SOURCES)
34 $(MCS) -debug -target:library -out:$@ -r:$< $(AVAHI_LIBS) $(SOURCES)
35  
36 endif
37  
38 EXTRA_DIST = $(SOURCES) $(ASSEMBLY).config \
39 Mono.Zeroconf.Providers.Bonjour.csproj
40 CLEANFILES = *.dll *.mdb
41 DISTCLEANFILES = *.pidb
42 MAINTAINERCLEANFILES = \
43 Makefile.in
44