imapext-2007

diff src/osdep/wce/makefile.wce @ 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/osdep/wce/makefile.wce	Mon Sep 14 15:17:45 2009 +0900
     1.3 @@ -0,0 +1,96 @@
     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:	Portable C client makefile -- WCE version
    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:		11 May 1989
    1.27 +# Last Edited:	30 August 2006
    1.28 +
    1.29 +
    1.30 +EXTRAAUTHENTICATORS=
    1.31 +DEFAULTAUTHENTICATORS=ext md5 pla log
    1.32 +EXTRADRIVERS =
    1.33 +DRIVERS = imap nntp pop3
    1.34 +DEFAULTDRIVER = dummy
    1.35 +CFLAGS= /MT /W3 /D_SH3_ -nologo $(EXTRACFLAGS)
    1.36 +CC = shcl
    1.37 +CCLIENTLIB= cclient.lib
    1.38 +
    1.39 +all:	$(CCLIENTLIB)
    1.40 +
    1.41 +.c.obj:
    1.42 +	$(CC) -c $(CFLAGS) $*.c
    1.43 +
    1.44 +osdep.h: os_wce.h
    1.45 +	copy os_wce.h osdep.h
    1.46 +	drivers $(EXTRADRIVERS) $(DRIVERS) dummy
    1.47 +	setproto $(DEFAULTDRIVER) $(DEFAULTDRIVER)
    1.48 +	mkauths $(EXTRAAUTHENTICATORS) $(DEFAULTAUTHENTICATORS)
    1.49 +
    1.50 +mail.obj: mail.h misc.h osdep.h mail.c
    1.51 +
    1.52 +misc.obj: mail.h misc.h misc.c
    1.53 +
    1.54 +flstring.obj: mail.h misc.h osdep.h flstring.h flstring.c
    1.55 +
    1.56 +netmsg.obj: mail.h misc.h netmsg.h osdep.h netmsg.c
    1.57 +
    1.58 +newsrc.obj: mail.h misc.h newsrc.h osdep.h newsrc.c
    1.59 +
    1.60 +rfc822.obj: mail.h rfc822.h misc.h rfc822.c
    1.61 +
    1.62 +smanager.obj: mail.h misc.h smanager.c
    1.63 +
    1.64 +utf8.obj: mail.h misc.h osdep.h utf8.h
    1.65 +
    1.66 +utf8aux.obj: mail.h misc.h osdep.h utf8.h
    1.67 +
    1.68 +imap4r1.obj: mail.h imap4r1.h misc.h osdep.h imap4r1.c
    1.69 +
    1.70 +nntp.obj: mail.h nntp.h smtp.h rfc822.h misc.h osdep.h nntp.c
    1.71 +
    1.72 +pop3.obj: mail.h pop3.h rfc822.h misc.h osdep.h pop3.c
    1.73 +
    1.74 +smtp.obj: mail.h smtp.h rfc822.h misc.h osdep.h smtp.c
    1.75 +
    1.76 +os_wce.obj: mail.h osdep.h env_wce.h fs.h ftl.h nl.h tcp.h tcp_wce.h \
    1.77 +	os_wce.c fs_wce.c ftl_wce.c nl_wce.c env_wce.c tcp_wce.c \
    1.78 +	auth_md5.c auth_log.c pmatch.c
    1.79 +
    1.80 +dummywce.obj: mail.h dummy.h misc.h osdep.h dummywce.c
    1.81 +
    1.82 +$(CCLIENTLIB): mail.obj misc.obj flstring.obj netmsg.obj \
    1.83 +	newsrc.obj rfc822.obj smanager.obj utf8.obj utf8aux.obj \
    1.84 +	imap4r1.obj nntp.obj pop3.obj smtp.obj os_wce.obj \
    1.85 +	dummywce.obj
    1.86 +	erase $(CCLIENTLIB)
    1.87 +	LIB /NOLOGO /OUT:cclient.lib \
    1.88 +	mail.obj misc.obj flstring.obj netmsg.obj \
    1.89 +	newsrc.obj rfc822.obj smanager.obj utf8.obj utf8aux.obj \
    1.90 +	imap4r1.obj nntp.obj pop3.obj smtp.obj os_wce.obj \
    1.91 +	dummywce.obj
    1.92 +
    1.93 +clean:
    1.94 +	del *.lib *.obj linkage.* osdep.* auths.c *.exe *.exp || rem
    1.95 +
    1.96 +# A monument to a hack of long ago and far away...
    1.97 +
    1.98 +love:
    1.99 +	@echo not war?

UW-IMAP'd extensions by yuuji