summaryrefslogtreecommitdiff
path: root/cgats/Makefile.WNT
diff options
context:
space:
mode:
Diffstat (limited to 'cgats/Makefile.WNT')
-rw-r--r--cgats/Makefile.WNT38
1 files changed, 38 insertions, 0 deletions
diff --git a/cgats/Makefile.WNT b/cgats/Makefile.WNT
new file mode 100644
index 0000000..4ca291d
--- /dev/null
+++ b/cgats/Makefile.WNT
@@ -0,0 +1,38 @@
+# Microsoft C++, WinNT setup
+
+SLASH = \
+SUFLIB = .lib
+SUFOBJ = .obj
+SUFEXE = .exe
+CMDSEP = &
+
+INCFLAG = /I
+DEFFLAG = /D
+UNDEFFLAG = "/u _"
+CCOPTFLAG = /Ox /GB
+CCDEBUGFLAG = /Z7 /Od
+CCPROFFLAG = /Z7
+LINKDEBUGFLAG = /DEBUG
+LINKPROFFLAG = /PROFILE
+
+STDHDRSDEF = $(MSVCNT)\include
+
+MAKEU = nmake
+LIBU = lib
+LIBOF = /OUT:
+RANLIB = rem
+AS = masm386
+CCFLAGSDEF = /DNT /c
+CC = cl /nologo $(CCFLAGS) $(INCFLAG)$(STDHDRS)
+CCOF = /Fo
+LINKLIBS = $(MSVCNT)/lib/user32.lib $(MSVCNT)/lib/gdi32.lib
+LINKFLAGSDEF = /link /INCREMENTAL:NO
+LINK = link $(LINKFLAGS)
+LINKOF = /OUT:
+
+.SUFFIXES:
+.SUFFIXES: .c $(SUFLIB) $(SUFOBJ) $(SUFEXE)
+
+.c$(SUFOBJ):
+ $(CC) $(CCOF)$*$(SUFOBJ) $<
+