annotate makefile.ntk @ 15:d012b9a282d9 draft default tip

READMEs changed
author HIROSE Yuuji <yuuji@gentei.org>
date Sun, 07 May 2023 13:13:36 +0900
parents ada5e610ab86
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
ada5e610ab86 imap-2007e
yuuji@gentei.org
parents:
diff changeset
1 # ========================================================================
ada5e610ab86 imap-2007e
yuuji@gentei.org
parents:
diff changeset
2 # Copyright 1988-2006 University of Washington
ada5e610ab86 imap-2007e
yuuji@gentei.org
parents:
diff changeset
3 #
ada5e610ab86 imap-2007e
yuuji@gentei.org
parents:
diff changeset
4 # Licensed under the Apache License, Version 2.0 (the "License");
ada5e610ab86 imap-2007e
yuuji@gentei.org
parents:
diff changeset
5 # you may not use this file except in compliance with the License.
ada5e610ab86 imap-2007e
yuuji@gentei.org
parents:
diff changeset
6 # You may obtain a copy of the License at
ada5e610ab86 imap-2007e
yuuji@gentei.org
parents:
diff changeset
7 #
ada5e610ab86 imap-2007e
yuuji@gentei.org
parents:
diff changeset
8 # http://www.apache.org/licenses/LICENSE-2.0
ada5e610ab86 imap-2007e
yuuji@gentei.org
parents:
diff changeset
9 #
ada5e610ab86 imap-2007e
yuuji@gentei.org
parents:
diff changeset
10 #
ada5e610ab86 imap-2007e
yuuji@gentei.org
parents:
diff changeset
11 # ========================================================================
ada5e610ab86 imap-2007e
yuuji@gentei.org
parents:
diff changeset
12
ada5e610ab86 imap-2007e
yuuji@gentei.org
parents:
diff changeset
13 # Program: IMAP Toolkit Makefile for Windows 9x and Windows NT + Kerberos
ada5e610ab86 imap-2007e
yuuji@gentei.org
parents:
diff changeset
14 #
ada5e610ab86 imap-2007e
yuuji@gentei.org
parents:
diff changeset
15 # Author: Mark Crispin
ada5e610ab86 imap-2007e
yuuji@gentei.org
parents:
diff changeset
16 # Networks and Distributed Computing
ada5e610ab86 imap-2007e
yuuji@gentei.org
parents:
diff changeset
17 # Computing & Communications
ada5e610ab86 imap-2007e
yuuji@gentei.org
parents:
diff changeset
18 # University of Washington
ada5e610ab86 imap-2007e
yuuji@gentei.org
parents:
diff changeset
19 # Administration Building, AG-44
ada5e610ab86 imap-2007e
yuuji@gentei.org
parents:
diff changeset
20 # Seattle, WA 98195
ada5e610ab86 imap-2007e
yuuji@gentei.org
parents:
diff changeset
21 # Internet: MRC@CAC.Washington.EDU
ada5e610ab86 imap-2007e
yuuji@gentei.org
parents:
diff changeset
22 #
ada5e610ab86 imap-2007e
yuuji@gentei.org
parents:
diff changeset
23 # Date: 7 December 1989
ada5e610ab86 imap-2007e
yuuji@gentei.org
parents:
diff changeset
24 # Last Edited: 30 August 2006
ada5e610ab86 imap-2007e
yuuji@gentei.org
parents:
diff changeset
25
ada5e610ab86 imap-2007e
yuuji@gentei.org
parents:
diff changeset
26
ada5e610ab86 imap-2007e
yuuji@gentei.org
parents:
diff changeset
27 COPY=copy
ada5e610ab86 imap-2007e
yuuji@gentei.org
parents:
diff changeset
28 CD=cd
ada5e610ab86 imap-2007e
yuuji@gentei.org
parents:
diff changeset
29 MAKE=nmake /nologo /f makefile.ntk
ada5e610ab86 imap-2007e
yuuji@gentei.org
parents:
diff changeset
30 MKDIR=mkdir
ada5e610ab86 imap-2007e
yuuji@gentei.org
parents:
diff changeset
31 RD=rmdir /s /q
ada5e610ab86 imap-2007e
yuuji@gentei.org
parents:
diff changeset
32
ada5e610ab86 imap-2007e
yuuji@gentei.org
parents:
diff changeset
33
ada5e610ab86 imap-2007e
yuuji@gentei.org
parents:
diff changeset
34 # Make the IMAP Toolkit
ada5e610ab86 imap-2007e
yuuji@gentei.org
parents:
diff changeset
35
ada5e610ab86 imap-2007e
yuuji@gentei.org
parents:
diff changeset
36 build: c-client mtest mailutil imapd ipopd
ada5e610ab86 imap-2007e
yuuji@gentei.org
parents:
diff changeset
37 $(CD) c-client
ada5e610ab86 imap-2007e
yuuji@gentei.org
parents:
diff changeset
38 $(MAKE)
ada5e610ab86 imap-2007e
yuuji@gentei.org
parents:
diff changeset
39 $(CD) ..\mtest
ada5e610ab86 imap-2007e
yuuji@gentei.org
parents:
diff changeset
40 $(MAKE)
ada5e610ab86 imap-2007e
yuuji@gentei.org
parents:
diff changeset
41 $(CD) ..\mailutil
ada5e610ab86 imap-2007e
yuuji@gentei.org
parents:
diff changeset
42 $(MAKE)
ada5e610ab86 imap-2007e
yuuji@gentei.org
parents:
diff changeset
43 $(CD) ..\ipopd
ada5e610ab86 imap-2007e
yuuji@gentei.org
parents:
diff changeset
44 $(MAKE)
ada5e610ab86 imap-2007e
yuuji@gentei.org
parents:
diff changeset
45 $(CD) ..\imapd
ada5e610ab86 imap-2007e
yuuji@gentei.org
parents:
diff changeset
46 $(MAKE)
ada5e610ab86 imap-2007e
yuuji@gentei.org
parents:
diff changeset
47 $(CD) ..
ada5e610ab86 imap-2007e
yuuji@gentei.org
parents:
diff changeset
48
ada5e610ab86 imap-2007e
yuuji@gentei.org
parents:
diff changeset
49 c-client:
ada5e610ab86 imap-2007e
yuuji@gentei.org
parents:
diff changeset
50 $(MKDIR) c-client
ada5e610ab86 imap-2007e
yuuji@gentei.org
parents:
diff changeset
51 $(COPY) src\c-client\*.* c-client
ada5e610ab86 imap-2007e
yuuji@gentei.org
parents:
diff changeset
52 $(COPY) src\charset\*.* c-client
ada5e610ab86 imap-2007e
yuuji@gentei.org
parents:
diff changeset
53 $(COPY) src\osdep\nt\*.* c-client
ada5e610ab86 imap-2007e
yuuji@gentei.org
parents:
diff changeset
54
ada5e610ab86 imap-2007e
yuuji@gentei.org
parents:
diff changeset
55 mtest:
ada5e610ab86 imap-2007e
yuuji@gentei.org
parents:
diff changeset
56 $(MKDIR) mtest
ada5e610ab86 imap-2007e
yuuji@gentei.org
parents:
diff changeset
57 $(COPY) src\mtest\*.* mtest
ada5e610ab86 imap-2007e
yuuji@gentei.org
parents:
diff changeset
58
ada5e610ab86 imap-2007e
yuuji@gentei.org
parents:
diff changeset
59 mailutil:
ada5e610ab86 imap-2007e
yuuji@gentei.org
parents:
diff changeset
60 $(MKDIR) mailutil
ada5e610ab86 imap-2007e
yuuji@gentei.org
parents:
diff changeset
61 $(COPY) src\mailutil\*.* mailutil
ada5e610ab86 imap-2007e
yuuji@gentei.org
parents:
diff changeset
62
ada5e610ab86 imap-2007e
yuuji@gentei.org
parents:
diff changeset
63 ipopd:
ada5e610ab86 imap-2007e
yuuji@gentei.org
parents:
diff changeset
64 $(MKDIR) ipopd
ada5e610ab86 imap-2007e
yuuji@gentei.org
parents:
diff changeset
65 $(COPY) src\ipopd\*.* ipopd
ada5e610ab86 imap-2007e
yuuji@gentei.org
parents:
diff changeset
66
ada5e610ab86 imap-2007e
yuuji@gentei.org
parents:
diff changeset
67 imapd:
ada5e610ab86 imap-2007e
yuuji@gentei.org
parents:
diff changeset
68 $(MKDIR) imapd
ada5e610ab86 imap-2007e
yuuji@gentei.org
parents:
diff changeset
69 $(COPY) src\imapd\*.* imapd
ada5e610ab86 imap-2007e
yuuji@gentei.org
parents:
diff changeset
70
ada5e610ab86 imap-2007e
yuuji@gentei.org
parents:
diff changeset
71 clean:
ada5e610ab86 imap-2007e
yuuji@gentei.org
parents:
diff changeset
72 $(RD) c-client mtest mailutil ipopd imapd
ada5e610ab86 imap-2007e
yuuji@gentei.org
parents:
diff changeset
73
ada5e610ab86 imap-2007e
yuuji@gentei.org
parents:
diff changeset
74 # A monument to a hack of long ago and far away...
ada5e610ab86 imap-2007e
yuuji@gentei.org
parents:
diff changeset
75 love:
ada5e610ab86 imap-2007e
yuuji@gentei.org
parents:
diff changeset
76 @echo 'not war?'

yatex.org