summaryrefslogtreecommitdiffstats
path: root/private/ntos/nthals/halraw/up
diff options
context:
space:
mode:
Diffstat (limited to 'private/ntos/nthals/halraw/up')
-rw-r--r--private/ntos/nthals/halraw/up/makefile6
-rw-r--r--private/ntos/nthals/halraw/up/makefile.inc5
-rw-r--r--private/ntos/nthals/halraw/up/sources109
3 files changed, 120 insertions, 0 deletions
diff --git a/private/ntos/nthals/halraw/up/makefile b/private/ntos/nthals/halraw/up/makefile
new file mode 100644
index 000000000..6ee4f43fa
--- /dev/null
+++ b/private/ntos/nthals/halraw/up/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/halraw/up/makefile.inc b/private/ntos/nthals/halraw/up/makefile.inc
new file mode 100644
index 000000000..e06ce5247
--- /dev/null
+++ b/private/ntos/nthals/halraw/up/makefile.inc
@@ -0,0 +1,5 @@
+obj\alpha\hal.def: ..\..\hal.src
+ rcpp -P -f ..\..\hal.src -DALPHA=1 $(C_DEFINES) -g obj\alpha\hal.def
+
+$(TARGETPATH)\alpha\hal.lib: $(TARGETPATH)\alpha\halrawup.lib
+ copy $** $@
diff --git a/private/ntos/nthals/halraw/up/sources b/private/ntos/nthals/halraw/up/sources
new file mode 100644
index 000000000..0caeb41eb
--- /dev/null
+++ b/private/ntos/nthals/halraw/up/sources
@@ -0,0 +1,109 @@
+!IF 0
+
+Copyright (c) 1993 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:
+
+ David N. Cutler (davec) 12-Apr-1993
+
+NOTE: Commented description of this file is in \nt\bak\bin\sources.tpl
+
+!ENDIF
+
+MAJORCOMP=ntos
+MINORCOMP=hal
+
+TARGETNAME=halrawup
+TARGETPATH=$(BASEDIR)\public\sdk\lib
+
+ALPHA_WARNING_LEVEL=-W3 -WX
+C_DEFINES=-DEV5 -DAXPRAW -DEISA_PLATFORM -DTAGGED_NVRAM -DPOSTED
+
+NT_UP=1
+
+!IF $(ALPHA)
+
+TARGETTYPE=HAL
+
+!ELSE
+
+TARGETTYPE=DRIVER
+
+!ENDIF
+
+INCLUDES=..\alpha;..\..\..\inc;..\..\..\ke;..\..\..\io;..\..\..\fw\alpha;..\..\..\fastfat;..\..\halalpha;..\..\halraw\alpha
+
+SOURCES=
+
+ALPHA_SOURCES=..\hal.rc \
+ ..\alpha\bushnd.c \
+ ..\drivesup.c \
+ ..\alpha\adjust.c \
+ ..\alpha\allstart.c \
+ ..\alpha\bios.c \
+ ..\alpha\bitmap.c \
+ ..\alpha\cache.c \
+ ..\alpha\devintr.s \
+ ..\alpha\ebsgdma.c \
+ ..\alpha\eeprom8k.c \
+ ..\alpha\eisasup.c \
+ ..\alpha\ev5cache.c \
+ ..\alpha\ev5int.c \
+ ..\alpha\ev5mchk.c \
+ ..\alpha\ev5mem.s \
+ ..\alpha\ev5prof.c \
+ ..\alpha\ev5ints.s \
+ ..\alpha\fwreturn.c \
+ ..\alpha\haldebug.c \
+ ..\alpha\halpal.s \
+ ..\alpha\haltsup.s \
+ ..\alpha\idle.s \
+ ..\alpha\info.c \
+ ..\alpha\inithal.c \
+ ..\alpha\intsup.s \
+ ..\alpha\iousage.c \
+ ..\alpha\ioproc.c \
+ ..\alpha\memory.c \
+ ..\alpha\nvenv.c \
+ ..\alpha\nvram.c \
+ ..\alpha\pciesc.c \
+ ..\alpha\pcisup.c \
+ ..\alpha\pcrtc.c \
+ ..\alpha\pcserial.c \
+ ..\alpha\pcspeakr.c \
+ ..\alpha\perf8254.c \
+ ..\alpha\vga.c \
+ ..\alpha\busdata.c \
+ ..\alpha\pcibus.c \
+ ..\alpha\iod.c \
+ ..\alpha\iodaddr.c \
+ ..\alpha\ioderr.c \
+ ..\alpha\iodio.s \
+ ..\alpha\iodmapio.c \
+ ..\alpha\rawerr.c \
+ ..\alpha\rwclock.c \
+ ..\alpha\rwinitnt.c \
+ ..\alpha\rwintbal.c \
+ ..\alpha\rwintsup.c \
+ ..\alpha\rwsysint.c
+
+DLLDEF=obj\*\hal.def
+
+!IF $(ALPHA)
+
+NTTARGETFILES=$(TARGETPATH)\alpha\hal.lib \
+ $(TARGETPATH)\alpha\hal.dll
+
+!ENDIF