imapext-2007

view src/imapd/makefile.w2k @ 0:ada5e610ab86

imap-2007e
author yuuji@gentei.org
date Mon, 14 Sep 2009 15:17:45 +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 # ========================================================================
14 # Program: IMAPD Makefile for Windows 2000/XP
15 #
16 # Author: Mark Crispin
17 # Networks and Distributed Computing
18 # Computing & Communications
19 # University of Washington
20 # Administration Building, AG-44
21 # Seattle, WA 98195
22 # Internet: MRC@CAC.Washington.EDU
23 #
24 # Date: 5 November 1990
25 # Last Edited: 30 August 2006
28 ALERT=\\imapd.alert
29 USERALERT=alert.txt
30 SHUTDOWN=\\nologin
31 ANO=\\anonymous.newsgroups
32 NNTP=\\imapd.nntp
35 C = ..\c-client
36 CCLIENTLIB = $C\cclient.lib
37 LIBS = $(CCLIENTLIB) ws2_32.lib winmm.lib advapi32.lib secur32.lib crypt32.lib
38 OSCOMPAT = /DWIN32
39 VSCOMPAT = /D_CRT_SECURE_NO_DEPRECATE /D_CRT_NONSTDC_NO_DEPRECATE
40 CFLAGS= -I$C /MT /W3 $(OSCOMPAT) $(VSCOMPAT) -nologo $(EXTRACFLAGS) -DALERTFILE=\"$(ALERT)\" -DNNTPFILE=\"$(NNTP)\" -DUSERALERTFILE=\"$(USERALERT)\" -DANOFILE=\"$(ANO)\" -DSHUTDOWNFILE=\"$(SHUTDOWN)\"
42 imapd: $(CCLIENTLIB) imapd.obj
43 LINK /NOLOGO imapd.obj $(LIBS)
45 imapd.obj: $C\mail.h $C\misc.h $C\osdep.h
47 $(CCLIENTLIB):
48 @echo Make c-client first
49 false
51 clean:
52 del *.obj *.exe *.lib *.exp || rem
54 # A monument to a hack of long ago and far away...
55 love:
56 @echo not war?

UW-IMAP'd extensions by yuuji