imapext-2007

diff src/imapd/makefile.ntk @ 0:ada5e610ab86

imap-2007e
author yuuji@gentei.org
date Mon, 14 Sep 2009 15:17:45 +0900
parents
children
line diff
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/src/imapd/makefile.ntk	Mon Sep 14 15:17:45 2009 +0900
     1.3 @@ -0,0 +1,58 @@
     1.4 +# ========================================================================
     1.5 +# Copyright 1988-2006 University of Washington
     1.6 +#
     1.7 +# Licensed under the Apache License, Version 2.0 (the "License");
     1.8 +# you may not use this file except in compliance with the License.
     1.9 +# You may obtain a copy of the License at
    1.10 +#
    1.11 +#     http://www.apache.org/licenses/LICENSE-2.0
    1.12 +#
    1.13 +# 
    1.14 +# ========================================================================
    1.15 +
    1.16 +
    1.17 +# Program:	IMAPD Makefile for Windows 9x and Windows NT + Kerberos
    1.18 +#
    1.19 +# Author:	Mark Crispin
    1.20 +#		Networks and Distributed Computing
    1.21 +#		Computing & Communications
    1.22 +#		University of Washington
    1.23 +#		Administration Building, AG-44
    1.24 +#		Seattle, WA  98195
    1.25 +#		Internet: MRC@CAC.Washington.EDU
    1.26 +#
    1.27 +# Date:		5 November 1990
    1.28 +# Last Edited:	30 August 2006
    1.29 +
    1.30 +
    1.31 +ALERT=\\imapd.alert
    1.32 +USERALERT=alert.txt
    1.33 +SHUTDOWN=\\nologin
    1.34 +ANO=\\anonymous.newsgroups
    1.35 +NNTP=\\imapd.nntp
    1.36 +
    1.37 +
    1.38 +C = ..\c-client
    1.39 +CCLIENTLIB = $C\cclient.lib
    1.40 +K5 =  \k5\lib
    1.41 +K5LIB = $(K5)\comerr32.lib $(K5)\gssapi32.lib $(K5)\krb5_32.lib
    1.42 +LIBS = $(CCLIENTLIB) $(K5LIB) ws2_32.lib winmm.lib advapi32.lib
    1.43 +OSCOMPAT = /DWIN32 /D_WIN32_WINNT=0x0400
    1.44 +VSCOMPAT = /D_CRT_SECURE_NO_DEPRECATE /D_CRT_NONSTDC_NO_DEPRECATE
    1.45 +CFLAGS= -I$C /MT /W3 $(OSCOMPAT) $(VSCOMPAT) -nologo $(EXTRACFLAGS) -DALERTFILE=\"$(ALERT)\" -DNNTPFILE=\"$(NNTP)\" -DUSERALERTFILE=\"$(USERALERT)\" -DANOFILE=\"$(ANO)\" -DSHUTDOWNFILE=\"$(SHUTDOWN)\"
    1.46 +
    1.47 +imapd: $(CCLIENTLIB) imapd.obj
    1.48 +	LINK /NOLOGO imapd.obj $(LIBS)
    1.49 +
    1.50 +imapd.obj: $C\mail.h $C\misc.h $C\osdep.h
    1.51 +
    1.52 +$(CCLIENTLIB):
    1.53 +	@echo Make c-client first
    1.54 +	false
    1.55 +
    1.56 +clean:
    1.57 +	del *.obj *.exe *.lib *.exp || rem
    1.58 +
    1.59 +# A monument to a hack of long ago and far away...
    1.60 +love:
    1.61 +	@echo not war?

UW-IMAP'd extensions by yuuji