summaryrefslogtreecommitdiffstats
path: root/sw/z80/kernel/makefile
diff options
context:
space:
mode:
authorNao Pross <naopross@thearcway.org>2018-10-30 11:41:24 +0100
committerNao Pross <naopross@thearcway.org>2018-10-30 11:41:24 +0100
commit43be150dc6e84f6f6eeb071cd3cdb7fc21125d60 (patch)
tree541fd3d690c1bdfd7b68d684029a400b80f4aa06 /sw/z80/kernel/makefile
parentAdd datasheets for ATmega328 and 74LS259 (diff)
downloadz80uPC-43be150dc6e84f6f6eeb071cd3cdb7fc21125d60.tar.gz
z80uPC-43be150dc6e84f6f6eeb071cd3cdb7fc21125d60.zip
Move sw to sw-old and hw to hw-altium, add kicad files
Diffstat (limited to 'sw/z80/kernel/makefile')
-rw-r--r--sw/z80/kernel/makefile53
1 files changed, 0 insertions, 53 deletions
diff --git a/sw/z80/kernel/makefile b/sw/z80/kernel/makefile
deleted file mode 100644
index be8eed4..0000000
--- a/sw/z80/kernel/makefile
+++ /dev/null
@@ -1,53 +0,0 @@
-####
-# source code settings
-#
-OSNAME := helvetiOS
-
-CSOURCES := $(wildcard *.c) \
- $(wildcard drivers/*.c)
-
-OBJECTS := $(patsubst %.c,build/%.rel,$(CSOURCES))
-HEXFILE := build/$(OSNAME).hex
-BINARY := build/$(OSNAME).bin
-
-###
-# compiler settings
-
-CC := sdcc
-
-CFLAGS := -mz80 \
- -I include \
- -I include/drivers \
- -I libc/include \
- --opt-code-size \
- -DDEBUG
-
-LDFLAGS := -mz80 --no-std-crt0 build/crt0.rel \
- --std-c89 -pedantic \
- --code-loc 0x0800 --data-loc 0x8000
-
-.PHONY: dirs dis clean
-all: $(BINARY)
-
-# build binary
-$(BINARY): $(OBJECTS) dirs
- $(CC) $(LDFLAGS) $(OBJECTS) -o $(HEXFILE)
- makebin -s 16384 $(HEXFILE) $(BINARY)
-
-$(OBJECTS): build/%.rel : %.c $(CSOURCES) dirs build/crt0.rel
- @printf "\n"
- $(CC) $(CFLAGS) -c $< -o $@
-
-build/crt0.rel: crt0.s
- sdasz80 -o $<
- @mv crt0.rel build
-
-dirs:
- mkdir -p build build/kernel build/libc build/kernel/drivers
-
-dis: $(BINARY)
- dz80 -b -n $<
-
-clean:
- - rm -rd build/*
- - rm crt0.rel