Mono.Zeroconf – Blame information for rev 1

Subversion Repositories:
Rev:
Rev Author Line No. Line
1 office 1 SUBDIRS = \
2 src \
3 docs
4  
5 MAINTAINERCLEANFILES = \
6 Makefile.in \
7 aclocal.m4 \
8 configure \
9 config.* \
10 INSTALL \
11 install-sh \
12 missing
13  
14 EXTRA_DIST = \
15 mono-zeroconf.spec \
16 Mono.Zeroconf.sln \
17 README.Windows
18  
19 collect:
20 rm -rf bin; \
21 mkdir bin; \
22 find src \( -iname *.exe -o -iname *.dll \) -exec cp {} bin \;
23  
24 PKV=$(PACKAGE)-$(VERSION)
25 PKB=$(PKV)-binary
26  
27 dist-windows: all
28 @rm -rf $(PKB) && \
29 mkdir -p $(PKB)/bin && \
30 cp src/MZClient/MZClient.exe src/Mono.Zeroconf/Mono.Zeroconf.dll src/Mono.Zeroconf.Providers.Bonjour/Mono.Zeroconf.Providers.Bonjour.dll $(PKB)/bin && \
31 cp AUTHORS NEWS README README.Windows $(PKB) && \
32 cp COPYING $(PKB)/LICENSE && \
33 zip -r9 $(PKB).zip $(PKB) && \
34 rm -rf $(PKB)
35  
36 release:
37 (cd $(top_srcdir)/docs; make update-html) && \
38 test -e $(PKV).tar.bz2 -a -e $(PKV).tar.gz -a -e $(PKV).zip -a -e $(PKB).zip || { echo "You must run distcheck and dist-windows before release"; exit 1; }; \
39 test -z $$MONO_USER && { echo "Please set MONO_USER for the commit"; exit 1; }; \
40 cp ChangeLog $(PKV).changes && \
41 sha1sum $(PKV).* $(PKB).* > $(PKV).sha1sum && \
42 touch LATEST-IS-$(VERSION) && \
43 ssh bansheeweb@banshee-project.org rm /home/bansheeweb/download.banshee-project.org/mono-zeroconf/LATEST-IS*; \
44 ssh bansheeweb@banshee-project.org rm -rf /home/bansheeweb/download.banshee-project.org/mono-zeroconf/docs; \
45 scp $(PKV).* $(PKB).* mono-zeroconf.spec LATEST* README README.Windows bansheeweb@banshee-project.org:/home/bansheeweb/download.banshee-project.org/mono-zeroconf/ && rm LATEST* $(PKV).* $(PKB).* && \
46 scp -r $(top_builddir)/docs/html bansheeweb@banshee-project.org:/home/bansheeweb/download.banshee-project.org/mono-zeroconf/docs && \
47 echo "Sleeping 10 seconds, about to tag release (as user $$MONO_USER)..."; \
48 sleep 10; \
49 echo "Starting svn tag..."; \
50 svn cp svn+ssh://$$MONO_USER@mono-cvs.ximian.com/source/trunk/Mono.Zeroconf svn+ssh://$$MONO_USER@mono-cvs.ximian.com/source/tags/Mono.Zeroconf-$(VERSION) -m 'Created tag for Mono.Zeroconf $(VERSION)';
51