640ab403e2
from Tom: improve behaviour on failed FindFirst call and return to app not DOS git-svn-id: https://svn.code.sf.net/p/freedos/svn/kernel/branches/UNSTABLE@991 6ac86273-5f31-0410-b378-82cca8765d1b
32 lines
759 B
Makefile
32 lines
759 B
Makefile
#
|
|
# MSC.MAK - kernel compiler options for MS VC 1.5x (MS CL 8.x)
|
|
#
|
|
|
|
TARGET=KMS
|
|
|
|
CC=$(BINPATH)\cl -batch -nologo -c
|
|
CL=$(BINPATH)\cl -batch -nologo
|
|
|
|
# used for building the library
|
|
|
|
CLIB=$(LIBPATH)\slibce.lib
|
|
MATH_EXTRACT=*aflmul *aFlshl *aFNauldi *aFulrem *aFulshr *aFuldiv *aFlrem *aFldiv *aFNaulsh
|
|
MATH_INSERT =+aflmul +aFlshl +aFNauldi +aFulrem +aFulshr +aFuldiv +aFlrem +aFldiv +aFNaulsh
|
|
|
|
#
|
|
|
|
!if $(XCPU) == 186
|
|
CPUOPT=-G1
|
|
!endif
|
|
!if $(XCPU) == 386
|
|
CPUOPT=-G3
|
|
!endif
|
|
|
|
ALLCFLAGS=@msc.cfg -I$(INCLUDEPATH) $(CPUOPT) $(ALLCFLAGS)
|
|
INITCFLAGS=-NTINIT_TEXT
|
|
CFLAGS =-NTHMA_TEXT
|
|
INITPATCH=..\utils\patchobj _DATA=IDATA DATA=ID BSS=ID DGROUP=I_GROUP CONST=IC
|
|
|
|
CFLAGST=-I..\hdr -I$(INCLUDEPATH) /Fm /AT /Os /Zp1
|
|
CFLAGSC=-I..\hdr -I$(INCLUDEPATH) /Fm /AL /Os /Zp1
|