Update of /cvsroot/subtrick/TiTan/src/boot/kernelinit
In directory usw-pr-cvs1:/tmp/cvs-serv15376
Added Files:
Makefile
Log Message:
New Makefile for kernel init dir
--- NEW FILE: Makefile ---
# Kernel int Makefile
# Please read license Agreement
# Written by Adham Helal
# (c)2002 SubTrick Group
ASM = nasm
OBJ = kernelinit.o
all: welcome kernelinit bye
welcome:
@echo "************** Starting Compilation of Kernel init **************"
kernelinit: kernelinit.s
nasm -f bin kernelinit.asm -o kernelinit.o
bye:
@echo "************** Finshed Compiling Kernel int **************"
clean:
rm -f $(OBJ)
|