From 22f703cab05b7cd368f4de9e03991b7664dc5022 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rg=20Frings-F=C3=BCrst?= Date: Mon, 1 Sep 2014 13:56:46 +0200 Subject: Initial import of argyll version 1.5.1-8 --- cgats/Makefile.WNT | 38 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 38 insertions(+) create mode 100644 cgats/Makefile.WNT (limited to 'cgats/Makefile.WNT') 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) $< + -- cgit v1.2.3