annotate msdos/mainmake @ 7:c153ca296910

Added tag r19-15b4 for changeset 27bc7f280385
author cvs
date Mon, 13 Aug 2007 08:47:16 +0200
parents 376386a54a3c
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1 # make all to compile and build Emacs.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2 # make install to install it.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3 # make TAGS to update tags tables.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4 #
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5 # make clean or make mostlyclean
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6 # Delete all files from the current directory that are normally
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
7 # created by building the program. Don't delete the files that
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
8 # record the configuration. Also preserve files that could be made
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
9 # by building, but normally aren't because the distribution comes
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
10 # with them.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
11 #
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
12 # Delete `.dvi' files here if they are not part of the distribution.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
13 #
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
14 # make distclean
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
15 # Delete all files from the current directory that are created by
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
16 # configuring or building the program. If you have unpacked the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
17 # source and built the program without creating any other files,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
18 # `make distclean' should leave only the files that were in the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
19 # distribution.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
20 #
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
21 # make realclean
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
22 # Delete everything from the current directory that can be
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
23 # reconstructed with this Makefile. This typically includes
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
24 # everything deleted by distclean, plus more: C source files
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
25 # produced by Bison, tags tables, info files, and so on.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
26 #
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
27 # make extraclean
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
28 # Still more severe - delete backup and autosave files, too.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
29
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
30 all: lib-src src
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
31
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
32 lib-src: FRC
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
33 cd lib-src
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
34 $(MAKE)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
35 cd ..
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
36
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
37 src: FRC
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
38 cd src
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
39 $(MAKE)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
40 cd ..
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
41
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
42 install: all
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
43 -md bin
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
44 cd lib-src
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
45 coff2exe hexl
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
46 coff2exe etags
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
47 coff2exe ctags
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
48 coff2exe b2m
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
49 mv -f *.exe ../bin/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
50 cd ..
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
51 cd src
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
52 coff2exe emacs
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
53 stubedit emacs.exe minstack=512k
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
54 mv -f emacs.exe ../bin/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
55 cd ..
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
56
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
57 FRC:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
58
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
59 TAGS tags: lib-src
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
60 cd src
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
61 go32 ../lib-src/etags *.[ch] ../lisp/*.el ../lisp/term/*.el
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
62 cd ..
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
63
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
64 check:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
65 @echo "We don't have any tests for GNU Emacs yet."