imapext-2007

annotate src/osdep/wce/makefile.wce @ 0:ada5e610ab86

imap-2007e
author yuuji@gentei.org
date Mon, 14 Sep 2009 15:17:45 +0900
parents
children
rev   line source
yuuji@0 1 # ========================================================================
yuuji@0 2 # Copyright 1988-2006 University of Washington
yuuji@0 3 #
yuuji@0 4 # Licensed under the Apache License, Version 2.0 (the "License");
yuuji@0 5 # you may not use this file except in compliance with the License.
yuuji@0 6 # You may obtain a copy of the License at
yuuji@0 7 #
yuuji@0 8 # http://www.apache.org/licenses/LICENSE-2.0
yuuji@0 9 #
yuuji@0 10 #
yuuji@0 11 # ========================================================================
yuuji@0 12
yuuji@0 13 # Program: Portable C client makefile -- WCE version
yuuji@0 14 #
yuuji@0 15 # Author: Mark Crispin
yuuji@0 16 # Networks and Distributed Computing
yuuji@0 17 # Computing & Communications
yuuji@0 18 # University of Washington
yuuji@0 19 # Administration Building, AG-44
yuuji@0 20 # Seattle, WA 98195
yuuji@0 21 # Internet: MRC@CAC.Washington.EDU
yuuji@0 22 #
yuuji@0 23 # Date: 11 May 1989
yuuji@0 24 # Last Edited: 30 August 2006
yuuji@0 25
yuuji@0 26
yuuji@0 27 EXTRAAUTHENTICATORS=
yuuji@0 28 DEFAULTAUTHENTICATORS=ext md5 pla log
yuuji@0 29 EXTRADRIVERS =
yuuji@0 30 DRIVERS = imap nntp pop3
yuuji@0 31 DEFAULTDRIVER = dummy
yuuji@0 32 CFLAGS= /MT /W3 /D_SH3_ -nologo $(EXTRACFLAGS)
yuuji@0 33 CC = shcl
yuuji@0 34 CCLIENTLIB= cclient.lib
yuuji@0 35
yuuji@0 36 all: $(CCLIENTLIB)
yuuji@0 37
yuuji@0 38 .c.obj:
yuuji@0 39 $(CC) -c $(CFLAGS) $*.c
yuuji@0 40
yuuji@0 41 osdep.h: os_wce.h
yuuji@0 42 copy os_wce.h osdep.h
yuuji@0 43 drivers $(EXTRADRIVERS) $(DRIVERS) dummy
yuuji@0 44 setproto $(DEFAULTDRIVER) $(DEFAULTDRIVER)
yuuji@0 45 mkauths $(EXTRAAUTHENTICATORS) $(DEFAULTAUTHENTICATORS)
yuuji@0 46
yuuji@0 47 mail.obj: mail.h misc.h osdep.h mail.c
yuuji@0 48
yuuji@0 49 misc.obj: mail.h misc.h misc.c
yuuji@0 50
yuuji@0 51 flstring.obj: mail.h misc.h osdep.h flstring.h flstring.c
yuuji@0 52
yuuji@0 53 netmsg.obj: mail.h misc.h netmsg.h osdep.h netmsg.c
yuuji@0 54
yuuji@0 55 newsrc.obj: mail.h misc.h newsrc.h osdep.h newsrc.c
yuuji@0 56
yuuji@0 57 rfc822.obj: mail.h rfc822.h misc.h rfc822.c
yuuji@0 58
yuuji@0 59 smanager.obj: mail.h misc.h smanager.c
yuuji@0 60
yuuji@0 61 utf8.obj: mail.h misc.h osdep.h utf8.h
yuuji@0 62
yuuji@0 63 utf8aux.obj: mail.h misc.h osdep.h utf8.h
yuuji@0 64
yuuji@0 65 imap4r1.obj: mail.h imap4r1.h misc.h osdep.h imap4r1.c
yuuji@0 66
yuuji@0 67 nntp.obj: mail.h nntp.h smtp.h rfc822.h misc.h osdep.h nntp.c
yuuji@0 68
yuuji@0 69 pop3.obj: mail.h pop3.h rfc822.h misc.h osdep.h pop3.c
yuuji@0 70
yuuji@0 71 smtp.obj: mail.h smtp.h rfc822.h misc.h osdep.h smtp.c
yuuji@0 72
yuuji@0 73 os_wce.obj: mail.h osdep.h env_wce.h fs.h ftl.h nl.h tcp.h tcp_wce.h \
yuuji@0 74 os_wce.c fs_wce.c ftl_wce.c nl_wce.c env_wce.c tcp_wce.c \
yuuji@0 75 auth_md5.c auth_log.c pmatch.c
yuuji@0 76
yuuji@0 77 dummywce.obj: mail.h dummy.h misc.h osdep.h dummywce.c
yuuji@0 78
yuuji@0 79 $(CCLIENTLIB): mail.obj misc.obj flstring.obj netmsg.obj \
yuuji@0 80 newsrc.obj rfc822.obj smanager.obj utf8.obj utf8aux.obj \
yuuji@0 81 imap4r1.obj nntp.obj pop3.obj smtp.obj os_wce.obj \
yuuji@0 82 dummywce.obj
yuuji@0 83 erase $(CCLIENTLIB)
yuuji@0 84 LIB /NOLOGO /OUT:cclient.lib \
yuuji@0 85 mail.obj misc.obj flstring.obj netmsg.obj \
yuuji@0 86 newsrc.obj rfc822.obj smanager.obj utf8.obj utf8aux.obj \
yuuji@0 87 imap4r1.obj nntp.obj pop3.obj smtp.obj os_wce.obj \
yuuji@0 88 dummywce.obj
yuuji@0 89
yuuji@0 90 clean:
yuuji@0 91 del *.lib *.obj linkage.* osdep.* auths.c *.exe *.exp || rem
yuuji@0 92
yuuji@0 93 # A monument to a hack of long ago and far away...
yuuji@0 94
yuuji@0 95 love:
yuuji@0 96 @echo not war?

UW-IMAP'd extensions by yuuji