summaryrefslogtreecommitdiff
path: root/pith/makefile.wnt
diff options
context:
space:
mode:
authorEduardo Chappa <echappa@gmx.com>2013-02-03 00:59:38 -0700
committerEduardo Chappa <echappa@gmx.com>2013-02-03 00:59:38 -0700
commit094ca96844842928810f14844413109fc6cdd890 (patch)
treee60efbb980f38ba9308ccb4fb2b77b87bbc115f3 /pith/makefile.wnt
downloadalpine-094ca96844842928810f14844413109fc6cdd890.tar.xz
Initial Alpine Version
Diffstat (limited to 'pith/makefile.wnt')
-rw-r--r--pith/makefile.wnt88
1 files changed, 88 insertions, 0 deletions
diff --git a/pith/makefile.wnt b/pith/makefile.wnt
new file mode 100644
index 00000000..d9316dba
--- /dev/null
+++ b/pith/makefile.wnt
@@ -0,0 +1,88 @@
+# $Id: makefile.wnt 14098 2005-10-03 18:54:13Z jpf@u.washington.edu $
+#
+# ========================================================================
+# Copyright 2006-2007 University of Washington
+#
+# Licensed under the Apache License, Version 2.0 (the "License");
+# you may not use this file except in compliance with the License.
+# You may obtain a copy of the License at
+#
+# http://www.apache.org/licenses/LICENSE-2.0
+#
+# ========================================================================
+
+#
+#
+# Makefile for WIN NT version of the libpith.lib
+#
+#
+CC=cl
+RM=del
+CP=copy
+RC=rc
+
+#includes symbol info for debugging
+CDEBUG= #-Zi -Od
+LDEBUG= /DEBUG /DEBUGTYPE:CV
+
+STDCFLAGS= -I..\include -I..\regex -nologo -MT -DWIN32 -DDOS -D_WINDOWS -DMSC_MALLOC
+
+CFLAGS= $(CDEBUG) $(STDCFLAGS) $(NET) $(EXTRACFLAGS)
+
+LFLAGS= $(LDEBUG) $(EXTRALDFLAGS)
+
+RCFLAGS =
+
+LIBER=lib
+LIBARGS=/nologo /verbose
+
+HFILES= ../include/system.h ../include/general.h \
+ abdlc.h ablookup.h addrbook.h addrstring.h adjtime.h adrbklib.h atttype.h \
+ bitmap.h bldaddr.h busy.h charset.h color.h conf.h conftype.h context.h \
+ copyaddr.h debug.h detach.h detoken.h editorial.h escapes.h filter.h filttype.h \
+ flag.h folder.h foldertype.h handle.h headers.h help.h helptext.h hist.h icache.h imap.h indxtype.h \
+ init.h keyword.h ldap.h list.h mailcap.h mailcmd.h mailindx.h maillist.h \
+ mailpart.h mailview.h margin.h mimedesc.h mimetype.h msgno.h newmail.h news.h \
+ options.h pattern.h pineelt.h pipe.h readfile.h remote.h remtype.h repltype.h reply.h \
+ rfc2231.h save.h savetype.h search.h send.h sequence.h signal.h sort.h sorttype.h \
+ state.h status.h store.h stream.h string.h strlst.h takeaddr.h tempfile.h text.h \
+ thread.h url.h user.h util.h
+
+OFILES= ablookup.obj abdlc.obj addrbook.obj addrstring.obj adrbklib.obj bldaddr.obj charset.obj \
+ color.obj conf.obj context.obj copyaddr.obj detoken.obj detach.obj editorial.obj escapes.obj \
+ filter.obj flag.obj folder.obj handle.obj help.obj helptext.obj hist.obj icache.obj imap.obj init.obj \
+ keyword.obj ldap.obj list.obj mailcap.obj mailcmd.obj mailindx.obj maillist.obj mailview.obj \
+ margin.obj mimedesc.obj mimetype.obj msgno.obj newmail.obj news.obj pattern.obj pipe.obj \
+ readfile.obj remote.obj reply.obj rfc2231.obj save.obj search.obj sequence.obj send.obj sort.obj state.obj \
+ status.obj store.obj stream.obj string.obj strlst.obj takeaddr.obj tempfile.obj text.obj \
+ thread.obj adjtime.obj url.obj util.obj
+
+all: libpith.lib
+
+helptext.h: help_h_gen.exe pine.hlp
+ help_h_gen.exe < pine.hlp > helptext.h
+
+helptext.c: help_c_gen.exe pine.hlp
+ help_c_gen.exe < pine.hlp > helptext.c
+
+help_h_gen.exe:
+ $(CC) /c $(CFLAGS) help_h_gen.c
+ link /subsystem:console /out:help_h_gen.exe $(LFLAGS) help_h_gen.obj
+
+help_c_gen.exe:
+ $(CC) /c $(CFLAGS) help_c_gen.c
+ link /subsystem:console /out:help_c_gen.exe $(LFLAGS) help_c_gen.obj
+
+.c.obj:
+ $(CC) -c $(CFLAGS) "$(MAKEDIR)"\$*.c
+
+$(OFILES): $(HFILES)
+
+libpith.lib: $(OFILES)
+ $(RM) libpith.lib || rem
+ $(LIBER) /out:libpith.lib $(OFILES)
+
+clean:
+ $(RM) *.lib
+ $(RM) *.obj
+ $(RM) helptext.h helptext.c help_h_gen.exe help_c_gen.exe