From e611b132f9b8abe35b362e5870b74bce94a1e58e Mon Sep 17 00:00:00 2001 From: Adam Date: Sat, 16 May 2020 20:51:50 -0700 Subject: initial commit --- private/ntos/nthals/halcbus/mca/makefile | 6 ++ private/ntos/nthals/halcbus/mca/makefile.inc | 2 + private/ntos/nthals/halcbus/mca/sources | 116 +++++++++++++++++++++++++++ 3 files changed, 124 insertions(+) create mode 100644 private/ntos/nthals/halcbus/mca/makefile create mode 100644 private/ntos/nthals/halcbus/mca/makefile.inc create mode 100644 private/ntos/nthals/halcbus/mca/sources (limited to 'private/ntos/nthals/halcbus/mca') diff --git a/private/ntos/nthals/halcbus/mca/makefile b/private/ntos/nthals/halcbus/mca/makefile new file mode 100644 index 000000000..6ee4f43fa --- /dev/null +++ b/private/ntos/nthals/halcbus/mca/makefile @@ -0,0 +1,6 @@ +# +# DO NOT EDIT THIS FILE!!! Edit .\sources. if you want to add a new source +# file to this component. This file merely indirects to the real make file +# that is shared by all the components of NT OS/2 +# +!INCLUDE $(NTMAKEENV)\makefile.def diff --git a/private/ntos/nthals/halcbus/mca/makefile.inc b/private/ntos/nthals/halcbus/mca/makefile.inc new file mode 100644 index 000000000..e2bb55a56 --- /dev/null +++ b/private/ntos/nthals/halcbus/mca/makefile.inc @@ -0,0 +1,2 @@ +obj\i386\hal.def: ..\..\hal.src + $(TARGET_CPP) /EP -Di386 $(C_DEFINES) ..\..\hal.src > obj\i386\hal.def diff --git a/private/ntos/nthals/halcbus/mca/sources b/private/ntos/nthals/halcbus/mca/sources new file mode 100644 index 000000000..f160571e9 --- /dev/null +++ b/private/ntos/nthals/halcbus/mca/sources @@ -0,0 +1,116 @@ + +!IF 0 + +Copyright (c) 1989 Microsoft Corporation + +Module Name: + + sources. + +Abstract: + + This file specifies the target component being built and the list of + sources files needed to build that component. Also specifies optional + compiler switches and libraries that are unique for the component being + built. + + +Author: + + Steve Wood (stevewo) 12-Apr-1990 + +NOTE: Commented description of this file is in \nt\bak\bin\sources.tpl + +!ENDIF + +MAJORCOMP=ntos +MINORCOMP=hal + +TARGETNAME=halcbusm +TARGETPATH=$(BASEDIR)\public\sdk\lib + +!IF $(386) + +TARGETTYPE=HAL +NT_UP=0 + +!ELSE + +TARGETTYPE=DRIVER + +!ENDIF + +C_DEFINES=$(C_DEFINES) -DMCA +ASM_DEFINES=$(ASM_DEFINES) -DMCA + +INCLUDES=..\..\..\inc;..\..\..\ke;..\..\;..;..\..\halmca\i386 + +SOURCES= + +i386_SOURCES=hal.rc \ + drivesup.c \ + bushnd.c \ + rangesup.c \ + ..\i386\ixbeep.asm \ + ..\i386\ixbusdat.c \ + ..\i386\ixdat.c \ + ..\i386\ixinfo.c \ + ..\i386\ixisabus.c \ + ..\i386\ixpcibus.c \ + ..\i386\ixpciint.c \ + ..\i386\ixpcibrd.c \ + ..\i386\ixcmos.asm \ + ..\i386\ixenvirv.c \ + ..\i386\ixfirm.c \ + ..\i386\ixhwsup.c \ + ..\i386\ixidle.asm \ + ..\i386\ixmcabus.c \ + ..\i386\ixmcasup.c \ + ..\i386\ixkdcom.c \ + ..\i386\ixphwsup.c \ + ..\i386\ixprofil.asm \ + ..\i386\ixreboot.c \ + ..\i386\ixthunk.c \ + ..\i386\ixusage.c \ + ..\i386\xxbiosa.asm \ + ..\i386\xxbiosc.c \ + ..\i386\xxdisp.c \ + ..\i386\xxkdsup.c \ + ..\i386\xxmemory.c \ + ..\i386\xxstubs.c \ + ..\i386\xxtime.c \ + ..\i386\cbapic.c \ + ..\i386\cbioacc.asm \ + ..\i386\cb1stall.asm \ + ..\i386\cb2stall.asm \ + ..\i386\cbswint.asm \ + ..\i386\cbsysint.asm \ + ..\i386\cbmapint.c \ + ..\i386\cbdriver.c \ + ..\i386\cbusnmi.c \ + ..\i386\cbusboot.asm \ + ..\i386\cbuslock.asm \ + ..\i386\cbusprof.asm \ + ..\i386\cbusmisc.asm \ + ..\i386\cbus2cbc.asm \ + ..\i386\cbusapic.asm \ + ..\i386\cbus2.c \ + ..\i386\cbus1.c \ + ..\i386\cbus1bt.asm \ + ..\i386\cbus2ecc.c \ + ..\i386\cbus.c \ + ..\i386\cbus_sw.c \ + ..\i386\cbusmem.c \ + ..\i386\cbushal.c \ + ..\i386\cbusproc.c + + +DLLDEF=obj\*\hal.def + +MSC_WARNING_LEVEL=/W3 /WX + +!IF $(386) + +NTTARGETFILES=$(TARGETPATH)\i386\halcbusm.lib + +!ENDIF -- cgit v1.2.3