diff options
Diffstat (limited to '')
-rw-r--r-- | sw/z80/makefile | 18 |
1 files changed, 13 insertions, 5 deletions
diff --git a/sw/z80/makefile b/sw/z80/makefile index 3d682ca..2eb4713 100644 --- a/sw/z80/makefile +++ b/sw/z80/makefile @@ -3,7 +3,10 @@ # OSNAME := helvetiOS -CSOURCES := $(wildcard kernel/*.c) $(wildcard libc/*.c) +CSOURCES := $(wildcard kernel/*.c) \ + $(wildcard kernel/drivers/*.c) \ + $(wildcard libc/*.c) + OBJECTS := $(patsubst %.c,build/%.rel,$(CSOURCES)) HEXFILE := build/$(OSNAME).hex BINARY := build/$(OSNAME).bin @@ -14,7 +17,10 @@ BINARY := build/$(OSNAME).bin CC := sdcc CFLAGS := -mz80 \ - -I kernel/include -I libc/include -DDEBUG + -I kernel/include \ + -I kernel/include/drivers \ + -I libc/include \ + -DDEBUG LDFLAGS := -mz80 --no-std-crt0 crt0.rel \ --code-loc 0x0800 --data-loc 0x8000 @@ -25,9 +31,11 @@ all: $(BINARY) # build binary $(BINARY): $(OBJECTS) dirs $(CC) $(LDFLAGS) $(OBJECTS) -o $(HEXFILE) - xxd -r -p $(HEXFILE) $(BINARY) + @# xxd -r -p $(HEXFILE) $(BINARY) + makebin -s 16384 $(HEXFILE) $(BINARY) $(OBJECTS): build/%.rel : %.c $(CSOURCES) dirs crt0.rel + @printf "\n" $(CC) $(CFLAGS) -c $< -o $@ crt0.rel: crt0.s @@ -37,9 +45,9 @@ dirs: mkdir -p build build/kernel build/libc dis: $(BINARY) - z80dasm -a -g 0h $< -o $(OSNAME).s + @# z80dasm -a -l -g 0h $< -o build/$(OSNAME).s + dz80 -b -n $< clean: - rm -rd build/* - - rm $(OSNAME).s - rm crt0.rel |