summaryrefslogtreecommitdiffstats
path: root/private/ntos/rtl/up
diff options
context:
space:
mode:
authorAdam <you@example.com>2020-05-17 05:51:50 +0200
committerAdam <you@example.com>2020-05-17 05:51:50 +0200
commite611b132f9b8abe35b362e5870b74bce94a1e58e (patch)
treea5781d2ec0e085eeca33cf350cf878f2efea6fe5 /private/ntos/rtl/up
downloadNT4.0-e611b132f9b8abe35b362e5870b74bce94a1e58e.tar
NT4.0-e611b132f9b8abe35b362e5870b74bce94a1e58e.tar.gz
NT4.0-e611b132f9b8abe35b362e5870b74bce94a1e58e.tar.bz2
NT4.0-e611b132f9b8abe35b362e5870b74bce94a1e58e.tar.lz
NT4.0-e611b132f9b8abe35b362e5870b74bce94a1e58e.tar.xz
NT4.0-e611b132f9b8abe35b362e5870b74bce94a1e58e.tar.zst
NT4.0-e611b132f9b8abe35b362e5870b74bce94a1e58e.zip
Diffstat (limited to 'private/ntos/rtl/up')
-rw-r--r--private/ntos/rtl/up/alpha/sources14
-rw-r--r--private/ntos/rtl/up/i386/sources17
-rw-r--r--private/ntos/rtl/up/makefile6
-rw-r--r--private/ntos/rtl/up/makefile.inc1
-rw-r--r--private/ntos/rtl/up/mips/sources11
-rw-r--r--private/ntos/rtl/up/ppc/sources10
-rw-r--r--private/ntos/rtl/up/sources83
7 files changed, 142 insertions, 0 deletions
diff --git a/private/ntos/rtl/up/alpha/sources b/private/ntos/rtl/up/alpha/sources
new file mode 100644
index 000000000..c7016ebc1
--- /dev/null
+++ b/private/ntos/rtl/up/alpha/sources
@@ -0,0 +1,14 @@
+ALPHA_SOURCES=..\alpha\capture.s \
+ ..\alpha\context.c \
+ ..\alpha\debugstb.s \
+ ..\alpha\exdsptch.c \
+ ..\alpha\getcalr.c \
+ ..\alpha\largeint.s \
+ ..\alpha\lzntaxp.s \
+ ..\alpha\ntcurteb.s \
+ ..\alpha\mvmem.s \
+ ..\alpha\trampoln.s \
+ ..\alpha\unwindr.c \
+ ..\alpha\chandler.c \
+ ..\alpha\ghandler.c \
+ ..\alpha\xcptmisc.s
diff --git a/private/ntos/rtl/up/i386/sources b/private/ntos/rtl/up/i386/sources
new file mode 100644
index 000000000..a609b20e6
--- /dev/null
+++ b/private/ntos/rtl/up/i386/sources
@@ -0,0 +1,17 @@
+i386_SOURCES=..\i386\context.c \
+ ..\i386\debug3.c \
+ ..\i386\debug2.asm \
+ ..\i386\divlarge.c \
+ ..\i386\exdsptch.c \
+ ..\i386\stkwalk.asm \
+ ..\i386\stringsp.asm \
+ ..\i386\ioaccess.asm \
+ ..\i386\largeint.asm \
+ ..\i386\lzntx86.asm \
+ ..\i386\movemem.asm \
+ ..\i386\ntcurteb.asm \
+ ..\i386\raise.asm \
+ ..\i386\raisests.c \
+ ..\i386\rtldump.c \
+ ..\i386\xcptmisc.asm \
+ ..\i386\halvprnt.c
diff --git a/private/ntos/rtl/up/makefile b/private/ntos/rtl/up/makefile
new file mode 100644
index 000000000..6ee4f43fa
--- /dev/null
+++ b/private/ntos/rtl/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/rtl/up/makefile.inc b/private/ntos/rtl/up/makefile.inc
new file mode 100644
index 000000000..f64d258e3
--- /dev/null
+++ b/private/ntos/rtl/up/makefile.inc
@@ -0,0 +1 @@
+..\error.c: ..\error.h
diff --git a/private/ntos/rtl/up/mips/sources b/private/ntos/rtl/up/mips/sources
new file mode 100644
index 000000000..c78a3968b
--- /dev/null
+++ b/private/ntos/rtl/up/mips/sources
@@ -0,0 +1,11 @@
+MIPS_SOURCES=..\mips\chandler.c \
+ ..\mips\context.c \
+ ..\mips\debugstb.s \
+ ..\mips\exdsptch.c \
+ ..\mips\getcalr.c \
+ ..\mips\largeint.s \
+ ..\mips\lzntmips.s \
+ ..\mips\trampoln.s \
+ ..\mips\xcptmisc.s \
+ ..\mips\xxcaptur.s \
+ ..\mips\xxmvmem.s
diff --git a/private/ntos/rtl/up/ppc/sources b/private/ntos/rtl/up/ppc/sources
new file mode 100644
index 000000000..933e58555
--- /dev/null
+++ b/private/ntos/rtl/up/ppc/sources
@@ -0,0 +1,10 @@
+PPC_SOURCES=..\ppc\chandler.c \
+ ..\ppc\context.c \
+ ..\ppc\debugstb.s \
+ ..\ppc\exdsptch.c \
+ ..\ppc\getcalr.c \
+ ..\ppc\largeint.s \
+ ..\ppc\lzntppc.s \
+ ..\ppc\movemem.s \
+ ..\ppc\trampoln.s \
+ ..\ppc\xcptmisc.s
diff --git a/private/ntos/rtl/up/sources b/private/ntos/rtl/up/sources
new file mode 100644
index 000000000..43f689833
--- /dev/null
+++ b/private/ntos/rtl/up/sources
@@ -0,0 +1,83 @@
+!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=krtl
+
+TARGETNAME=ntosrtl
+TARGETPATH=..\..\obj
+TARGETTYPE=LIBRARY
+GPSIZE=32
+
+INCLUDES=..;..\..\inc;..\..\..\inc
+
+NTPROFILEINPUT=yes
+
+C_DEFINES=$(C_DEFINES) -D_NTSYSTEM_ -DNTOS_KERNEL_RUNTIME=1
+
+ASM_DEFINES=-DNTOS_KERNEL_RUNTIME=1
+
+SOURCES=..\acledit.c \
+ ..\assert.c \
+ ..\atom.c \
+ ..\bitmap.c \
+ ..\cnvint.c \
+ ..\compress.c \
+ ..\debug.c \
+ ..\eballoc.c \
+ ..\environ.c \
+ ..\error.c \
+ ..\excptdbg.c \
+ ..\gentable.c \
+ ..\gen8dot3.c \
+ ..\heap.c \
+ ..\imagedir.c \
+ ..\checksum.c \
+ ..\ldrrsrc.c \
+ ..\ldrreloc.c \
+ ..\lznt1.c \
+ ..\message.c \
+ ..\nls.c \
+ ..\pctohdr.c \
+ ..\prefix.c \
+ ..\prodtype.c \
+ ..\random.c \
+ ..\registry.c \
+ ..\regutil.c \
+ ..\rtlassig.c \
+ ..\rtldata.c \
+ ..\rtlexec.c \
+ ..\rxact.c \
+ ..\sertl.c \
+ ..\splay.c \
+ ..\string.c \
+ ..\stktrace.c \
+ ..\time.c \
+ ..\nlsxlat.c \
+ ..\eventlog.c \
+ ..\trace.c
+
+UMTYPE=console
+
+NTTARGETFILE0=..\error.c