imapext-2007

view makefile.nt @ 15:d012b9a282d9

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

UW-IMAP'd extensions by yuuji