]> code.delx.au - gnu-emacs/blob - admin/nt/makedist.bat
Add 2012 to FSF copyright years for Emacs files (do not merge to trunk)
[gnu-emacs] / admin / nt / makedist.bat
1 @echo off
2
3 rem Copyright (C) 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2012
4 rem Free Software Foundation, Inc.
5
6 rem Cannot use brackets in andrewi's email below because
7 rem older Windows shells will treat that as redirection.
8
9 rem Author: Andrew Innes andrewi@gnu.org
10
11 rem This file is part of GNU Emacs.
12
13 rem GNU Emacs is free software: you can redistribute it and/or modify
14 rem it under the terms of the GNU General Public License as published by
15 rem the Free Software Foundation, either version 3 of the License, or
16 rem (at your option) any later version.
17
18 rem GNU Emacs is distributed in the hope that it will be useful,
19 rem but WITHOUT ANY WARRANTY; without even the implied warranty of
20 rem MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21 rem GNU General Public License for more details.
22
23 rem You should have received a copy of the GNU General Public License
24 rem along with GNU Emacs. If not, see http://www.gnu.org/licenses/.
25
26
27 if (%3) == () goto usage
28 if not (%4) == () goto %4
29
30 :bin
31
32 echo Create full bin distribution
33 copy %3\README.W32 emacs-%1\README.W32
34 rem Info-ZIP zip seems to be broken on Windows.
35 rem It always writes to zip.zip and treats the zipfile argument as one
36 rem of the files to go in it.
37 rem zip -9 -r %2-bin-i386 emacs-%1/BUGS emacs-%1/COPYING emacs-%1/README emacs-%1/README.W32 emacs-%1/INSTALL emacs-%1/bin emacs-%1/etc emacs-%1/info emacs-%1/lisp emacs-%1/leim -x emacs.mdp *.pdb *.opt *~ CVS
38 7z a -tZIP -mx=9 -xr!emacs.mdp -xr!*.pdb -xr!*.opt -xr!*~ -xr!CVS -xr!.arch-inventory %2-bin-i386.zip emacs-%1/BUGS emacs-%1/COPYING emacs-%1/README emacs-%1/README.W32 emacs-%1/INSTALL emacs-%1/bin emacs-%1/etc emacs-%1/info emacs-%1/lisp emacs-%1/leim emacs-%1/site-lisp
39 del emacs-%1\README.W32
40 if not (%4) == () goto end
41
42 :barebin
43 echo Create archive with just the basic binaries and generated files
44 echo (the user needs to unpack the full source distribution for
45 echo everything else)
46 copy %3\README.W32 emacs-%1\README.W32
47 rem Info-ZIP zip seems to be broken on Windows.
48 rem It always writes to zip.zip and treats the zipfile argument as one
49 rem of the files to go in it.
50 rem zip -9 -r %2-barebin-i386.zip emacs-%1/README.W32 emacs-%1/bin emacs-%1/etc/DOC-X emacs-%1/COPYING
51 7z a -tZIP -mx=9 %2-barebin-i386.zip emacs-%1/README.W32 emacs-%1/bin emacs-%1/etc/DOC-X emacs-%1/COPYING
52 del emacs-%1\README.W32
53 if not (%4) == () goto end
54
55 goto end
56
57 :usage
58 echo Generate source and binary distributions of emacs.
59 echo Usage: %0 emacs-version dist-basename distfiles [bin,barebin]
60 echo (e.g., %0 19.34 emacs-19.34.5 d:\andrewi\distfiles)
61 :end
62
63 goto skipArchTag
64 arch-tag: 6e2ddd92-c1c9-4992-b6b5-207aaab72f68
65 :skipArchTag