diff options
author | neoraider <devnull@localhost> | 2005-04-18 17:18:02 +0200 |
---|---|---|
committer | neoraider <devnull@localhost> | 2005-04-18 17:18:02 +0200 |
commit | 2c7f83e006c3fee8d26e940eee801a4be9443e50 (patch) | |
tree | cb8273f74857305921b653aed0a0488b2d27c13a /boot/Makefile | |
download | winx-master.tar winx-master.zip |
Diffstat (limited to 'boot/Makefile')
-rw-r--r-- | boot/Makefile | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/boot/Makefile b/boot/Makefile new file mode 100644 index 0000000..2fc7d3d --- /dev/null +++ b/boot/Makefile @@ -0,0 +1,10 @@ +BOOT_FILES = boot/load.o + +boot/boot.o : $(BOOT_FILES) + @echo Linking $*.o + @ld -r -o $*.o $(BOOT_FILES) + @echo + +boot/load.o : boot/load.S include/asm/version.h + @echo Compiling boot/load.S + @cpp boot/load.S -I include | as -o $*.o |