From 19d6cbe3fed0ff143cd42884bd0c0f4054114a75 Mon Sep 17 00:00:00 2001 From: Kenneth J Davis Date: Sun, 20 Nov 2005 17:00:36 +0000 Subject: [PATCH] add new intwrap.asm file git-svn-id: https://svn.code.sf.net/p/freedos/svn/kernel/branches/UNSTABLE@1156 6ac86273-5f31-0410-b378-82cca8765d1b --- kernel/makefile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/kernel/makefile b/kernel/makefile index 14159e9..28b87d7 100644 --- a/kernel/makefile +++ b/kernel/makefile @@ -16,7 +16,7 @@ HDR=../hdr/ # Order of linking is important: first kernel.asm, last INIT code. OBJS1=kernel.obj entry.obj intr.obj irqstack.obj apisupt.obj io.obj console.obj OBJS2=printer.obj serial.obj dosidle.obj execrh.obj asmsupt.obj int2f.obj \ -nlssupt.obj +nlssupt.obj intwrap.obj OBJS3=nls_hc.obj procsupt.obj dsk.obj error.obj blockio.obj chario.obj break.obj OBJS4=fatfs.obj fatdir.obj fattab.obj dosfns.obj fcbfns.obj inthndlr.obj OBJS5=ioctl.obj memmgr.obj task.obj newstuff.obj dosnames.obj nls.obj @@ -64,6 +64,7 @@ dosidle.obj: dosidle.asm segs.inc entry.obj: entry.asm segs.inc $(HDR)stacks.inc execrh.obj: execrh.asm segs.inc int2f.obj: int2f.asm segs.inc $(HDR)stacks.inc +intwrap.obj: intwrap.asm segs.inc $(HDR)stacks.inc intr.obj: intr.asm segs.inc io.obj: io.asm segs.inc $(HDR)stacks.inc irqstack.obj: irqstack.asm segs.inc