summaryrefslogtreecommitdiff
path: root/pico/osdep/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 /pico/osdep/makefile.wnt
downloadalpine-094ca96844842928810f14844413109fc6cdd890.tar.xz
Initial Alpine Version
Diffstat (limited to 'pico/osdep/makefile.wnt')
-rw-r--r--pico/osdep/makefile.wnt69
1 files changed, 69 insertions, 0 deletions
diff --git a/pico/osdep/makefile.wnt b/pico/osdep/makefile.wnt
new file mode 100644
index 00000000..0eb3d1e7
--- /dev/null
+++ b/pico/osdep/makefile.wnt
@@ -0,0 +1,69 @@
+# $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 libpicoosd.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 -DJOB_CONTROL -DMSC_MALLOC
+
+CFLAGS= $(CDEBUG) $(STDCFLAGS) $(NET) $(EXTRACFLAGS)
+
+LFLAGS= $(LDEBUG) $(EXTRALDFLAGS)
+
+RCFLAGS= #-D_UNICODE -DUNICODE
+
+LIBER=lib
+LIBARGS=/nologo /verbose
+
+HFILES= ../../include/system.h ../../include/general.h \
+ altedit.h chkpoint.h color.h filesys.h fsync.h \
+ getkey.h mswin.h mswin_tw.h mswin_aspell.h mswin_spell.h mouse.h \
+ newmail.h popen.h read.h \
+ shell.h signals.h spell.h terminal.h truncate.h \
+ tty.h
+
+OFILES= altedit.obj chkpoint.obj color.obj filesys.obj fsync.obj \
+ getkey.obj msdlg.obj mswin.obj mswin_tw.obj mswin_aspell.obj mswin_spell.obj \
+ mouse.obj newmail.obj popen.obj \
+ read.obj shell.obj signals.obj spell.obj terminal.obj truncate.obj \
+ tty.obj
+
+all: libpicoosd.lib mswin.res
+
+.c.obj:
+ $(CC) -c $(CFLAGS) "$(MAKEDIR)"\$*.c
+
+$(OFILES): $(HFILES)
+
+libpicoosd.lib: $(OFILES)
+ $(RM) libpicoosd.lib || rem
+ $(LIBER) /out:libpicoosd.lib $(OFILES)
+
+mswin.res: mswin.rc pico.ico mswinhnd.cur resource.h
+ $(RC) $(RCFLAGS) /fo mswin.res mswin.rc
+
+clean:
+ $(RM) *.lib
+ $(RM) *.obj
+ $(RM) mswin.res