imapext-2007

diff makefile.nt @ 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/makefile.nt	Mon Sep 14 15:17:45 2009 +0900
     1.3 @@ -0,0 +1,76 @@
     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 +# Program:	IMAP Toolkit Makefile for Windows 9x and Windows NT
    1.17 +#
    1.18 +# Author:	Mark Crispin
    1.19 +#		Networks and Distributed Computing
    1.20 +#		Computing & Communications
    1.21 +#		University of Washington
    1.22 +#		Administration Building, AG-44
    1.23 +#		Seattle, WA  98195
    1.24 +#		Internet: MRC@CAC.Washington.EDU
    1.25 +#
    1.26 +# Date:		7 December 1989
    1.27 +# Last Edited:	30 August 2006
    1.28 +
    1.29 +
    1.30 +COPY=copy
    1.31 +CD=cd
    1.32 +MAKE=nmake /nologo /f makefile.nt
    1.33 +MKDIR=mkdir
    1.34 +RD=rmdir /s /q
    1.35 +
    1.36 +
    1.37 +# Make the IMAP Toolkit
    1.38 +
    1.39 +build:	c-client mtest mailutil imapd ipopd
    1.40 +	$(CD) c-client
    1.41 +	$(MAKE)
    1.42 +	$(CD) ..\mtest
    1.43 +	$(MAKE)
    1.44 +	$(CD) ..\mailutil
    1.45 +	$(MAKE)
    1.46 +	$(CD) ..\ipopd
    1.47 +	$(MAKE)
    1.48 +	$(CD) ..\imapd
    1.49 +	$(MAKE)
    1.50 +	$(CD) ..
    1.51 +
    1.52 +c-client:
    1.53 +	$(MKDIR) c-client
    1.54 +	$(COPY) src\c-client\*.* c-client
    1.55 +	$(COPY) src\charset\*.* c-client
    1.56 +	$(COPY) src\osdep\nt\*.* c-client
    1.57 +
    1.58 +mtest:
    1.59 +	$(MKDIR) mtest
    1.60 +	$(COPY) src\mtest\*.* mtest
    1.61 +
    1.62 +mailutil:
    1.63 +	$(MKDIR) mailutil
    1.64 +	$(COPY) src\mailutil\*.* mailutil
    1.65 +
    1.66 +ipopd:
    1.67 +	$(MKDIR) ipopd
    1.68 +	$(COPY) src\ipopd\*.* ipopd
    1.69 +
    1.70 +imapd:
    1.71 +	$(MKDIR) imapd
    1.72 +	$(COPY) src\imapd\*.* imapd
    1.73 +
    1.74 +clean:
    1.75 +	$(RD) c-client mtest mailutil ipopd imapd
    1.76 +
    1.77 +# A monument to a hack of long ago and far away...
    1.78 +love:
    1.79 +	@echo 'not war?'

UW-IMAP'd extensions by yuuji