Mono.Zeroconf – Blame information for rev 1
?pathlinks?
Rev | Author | Line No. | Line |
---|---|---|---|
1 | office | 1 | ASSEMBLY_NAME = Mono.Zeroconf |
2 | ASSEMBLY = $(ASSEMBLY_NAME).dll |
||
3 | |||
4 | MONO_ZEROCONF_SRC = \ |
||
5 | Mono.Zeroconf/AddressProtocol.cs \ |
||
6 | Mono.Zeroconf/IRegisterService.cs \ |
||
7 | Mono.Zeroconf/IResolvableService.cs \ |
||
8 | Mono.Zeroconf/IServiceBrowser.cs \ |
||
9 | Mono.Zeroconf/IService.cs \ |
||
10 | Mono.Zeroconf/ITxtRecord.cs \ |
||
11 | Mono.Zeroconf/RegisterService.cs \ |
||
12 | Mono.Zeroconf/RegisterServiceEventArgs.cs \ |
||
13 | Mono.Zeroconf/RegisterServiceEventHandler.cs \ |
||
14 | Mono.Zeroconf/ServiceBrowseEventArgs.cs \ |
||
15 | Mono.Zeroconf/ServiceBrowseEventHandler.cs \ |
||
16 | Mono.Zeroconf/ServiceBrowser.cs \ |
||
17 | Mono.Zeroconf/ServiceResolvedEventArgs.cs \ |
||
18 | Mono.Zeroconf/ServiceResolvedEventHandler.cs \ |
||
19 | Mono.Zeroconf/ServiceErrorCode.cs \ |
||
20 | Mono.Zeroconf/TxtRecord.cs \ |
||
21 | Mono.Zeroconf/TxtRecordItem.cs |
||
22 | |||
23 | MONO_ZEROCONF_PROVIDERS_SRC = \ |
||
24 | Mono.Zeroconf.Providers/IZeroconfProvider.cs \ |
||
25 | Mono.Zeroconf.Providers/ZeroconfProviderAttribute.cs \ |
||
26 | Mono.Zeroconf.Providers/ProviderFactory.cs |
||
27 | |||
28 | SOURCES_PRE = \ |
||
29 | $(MONO_ZEROCONF_SRC) \ |
||
30 | $(MONO_ZEROCONF_PROVIDERS_SRC) |
||
31 | |||
32 | SOURCES = \ |
||
33 | $(top_srcdir)/src/AssemblyInfo.cs \ |
||
34 | $(foreach source,$(SOURCES_PRE),$(srcdir)/$(source)) |
||
35 | |||
36 | all: $(ASSEMBLY) |
||
37 | |||
38 | $(ASSEMBLY): $(SOURCES) $(POLICY_ASSEMBLIES) |
||
39 | $(MCS) -debug -keyfile:$(top_srcdir)/src/mono-zeroconf.snk -target:library -out:$@ $(SOURCES) |
||
40 | |||
41 | install-data-local: gac-install |
||
42 | |||
43 | uninstall-local: gac-uninstall |
||
44 | |||
45 | include $(top_srcdir)/src/Makefile.include |
||
46 | |||
47 | EXTRA_DIST = $(SOURCES) Mono.Zeroconf.csproj |
||
48 | CLEANFILES = *.dll *.mdb $(POLICY_ASSEMBLIES) $(POLICY_CONFIGS) |
||
49 | DISTCLEANFILES = *.pidb |
||
50 | MAINTAINERCLEANFILES = Makefile.in |
||
51 |