diff options
| -rw-r--r-- | Makefile | 12 |
1 files changed, 9 insertions, 3 deletions
@@ -6,20 +6,26 @@ ##################### +############ phony targets ############ + .PHONY: all clean run -#improve implicit rules + +############ some constants ############ + #lets use the size of a 1.44 floppy for a start for our boot img IMAGE_SIZE=1474560 + #font data starts at sector 50 FONT_DATA_START=25600 -#data starts at 0x8000 -#DATA_START=32768 + +############ flags ############ CFLAGS=-ffreestanding -std=gnu99 -m32 -fno-asynchronous-unwind-tables -O0 + ############ source and object files ############ #kernel sources (asm and c) |
