Release cleanup

svn path=/trunk/; revision=14
This commit is contained in:
Rex Jolliff 1998-08-25 04:41:53 +00:00
parent cdafa11dc1
commit 9cef58c15d
3 changed files with 377 additions and 357 deletions

View file

@ -1,11 +1,14 @@
#
# makefile for DOS-C boot
#
# $Header: /cygdrive/c/RCVS/CVS/ReactOS/reactos/loaders/boot/Attic/boot.mak,v 1.2 1998/08/12 22:43:38 rosmgr Exp $
# $Header: /cygdrive/c/RCVS/CVS/ReactOS/reactos/loaders/boot/Attic/boot.mak,v 1.3 1998/08/25 04:39:40 rex Exp $
#
# $Log: boot.mak,v $
# Revision 1.2 1998/08/12 22:43:38 rosmgr
# Update from the kernel team
# Revision 1.3 1998/08/25 04:39:40 rex
# Release cleanup
#
# Revision 1.1.1.2 1998/08/25 04:27:38 rex
# A much Needed Update
#
#
# Rev 1.3 10 Jan 1997 4:51:54 patv
@ -53,4 +56,4 @@ clean:
del *.las
del *.obj
del *.exe


View file

@ -27,11 +27,14 @@
;
; $Logfile: C:/dos-c/src/boot/boot.asv $
;
; $Header: /cygdrive/c/RCVS/CVS/ReactOS/reactos/loaders/boot/Attic/bootbk.asm,v 1.2 1998/08/12 22:43:38 rosmgr Exp $
; $Header: /cygdrive/c/RCVS/CVS/ReactOS/reactos/loaders/boot/Attic/bootbk.asm,v 1.3 1998/08/25 04:40:47 rex Exp $
;
; $Log: bootbk.asm,v $
; Revision 1.2 1998/08/12 22:43:38 rosmgr
; Update from the kernel team
; Revision 1.3 1998/08/25 04:40:47 rex
; Release cleanup
;
; Revision 1.1.1.2 1998/08/25 04:27:38 rex
; A much Needed Update
;
;
; Rev 1.5 10 Jan 1997 4:58:06 patv
@ -290,5 +293,3 @@ TEXT ENDS
end

View file

@ -17,30 +17,46 @@ include rules.mak
#
COMPONENTS = kernel lib
#
# Select the server(s) you want to build
#
SERVERS = win32 posix linux os2
#
# Select the loader(s) you want to build
#
LOADERS = dos
#
# Select the modules you want
# Select the device drivers and filesystems you want
#
MODULES = parallel keyboard
KERNEL_SERVICES = parallel keyboard null mouse serial sound ide
all: $(COMPONENTS) $(LOADERS) $(MODULES)
all: $(COMPONENTS) $(LOADERS) $(KERNEL_SERVICES)
#
# Device driver rules
#
ide: dummy
make -C services/ide
null: dummy
make -C services/null
parallel: dummy
make -C modules/parallel
make -C services/parallel
keyboard: dummy
make -C modules/keyboard
make -C services/keyboard
mouse: dummy
make -C modules/mouse
make -C services/mouse
serial: dummy
make -C services/serial
sound: dummy
make -C services/sound
#
# Kernel loaders
@ -54,7 +70,7 @@ dos: dummy
#
kernel: dummy
make -C kernel
make -C ntoskrnl
lib: dummy
make -C lib