X-Git-Url: http://git.mutantstargoat.com/user/nuclear/?p=bootcensus;a=blobdiff_plain;f=Makefile;h=2a0ad5c56a6dac23930f6883bc3eec263d81bf67;hp=c4d724a94b11acdc41639094ff9ceb340be9bfa3;hb=10843571c724084c68d33d0438167d400cc8de2e;hpb=aea4c0e820b437aebb00a90b5f9fd847044f88fe diff --git a/Makefile b/Makefile index c4d724a..2a0ad5c 100644 --- a/Makefile +++ b/Makefile @@ -1,16 +1,16 @@ -csrc = $(wildcard src/*.c) $(wildcard src/libc/*.c) $(wildcard src/test/*.c) -ssrc = $(wildcard src/*.s) $(wildcard src/libc/*.s) $(wildcard src/boot/*.s) $(wildcard src/test/*.s) +csrc = $(wildcard src/*.c) $(wildcard src/libc/*.c) $(wildcard src/census/*.c) +ssrc = $(wildcard src/*.s) $(wildcard src/libc/*.s) $(wildcard src/boot/*.s) $(wildcard src/census/*.s) Ssrc = $(wildcard src/*.S) obj = $(csrc:.c=.o) $(ssrc:.s=.o) $(Ssrc:.S=.o) dep = $(obj:.o=.d) -elf = test -bin = test.bin +elf = bcensus +bin = bcensus.bin warn = -pedantic -Wall #opt = -O2 dbg = -g inc = -Isrc -Isrc/libc -Isrc/test -gccopt = -fno-pic -ffreestanding -nostdinc -fno-builtin +gccopt = -fno-pic -ffreestanding -nostdinc -fno-builtin -ffast-math CFLAGS = $(ccarch) -march=i386 $(warn) $(opt) $(dbg) $(gccopt) $(inc) $(def) ASFLAGS = $(asarch) -march=i386 $(dbg) -nostdinc -fno-builtin $(inc) @@ -38,13 +38,13 @@ pcboot.iso: floppy.img boot.img: bootldr.bin $(bin) cat bootldr.bin $(bin) >$@ -# bootldr.bin will contain only .boot and .boot2 +# bootldr.bin will contain .boot, .boot2, .bootend, and .lowtext bootldr.bin: $(elf) - objcopy -O binary -j '.boot*' $< $@ + objcopy -O binary -j '.boot*' -j .lowtext $< $@ -# the main binary will contain every section *except* .boot and .boot2 +# the main binary will contain every section *except* those $(bin): $(elf) - objcopy -O binary -R '.boot*' $< $@ + objcopy -O binary -R '.boot*' -R .lowtext $< $@ $(elf): $(obj) $(LD) -o $@ $(obj) -Map link.map $(LDFLAGS) @@ -72,7 +72,7 @@ bootldr.disasm: $(elf) objdump -d $< -j .boot -j .boot2 -m i8086 >$@ $(elf).disasm: $(elf) - objdump -d $< -j .startup -j .text -m i386 >$@ + objdump -d $< -j .startup -j .text -j .lowtext -m i386 >$@ $(elf).sym: $(elf) objcopy --only-keep-debug $< $@