OpenCores
URL https://opencores.org/ocsvn/tv80/tv80/trunk

Subversion Repositories tv80

[/] [tv80/] [branches/] [restruc1/] [tests/] [Makefile] - Blame information for rev 84

Details | Compare with Previous | View Log

Line No. Rev Author Line
1 2 ghutchis
# Makefile for Z80 C/Assembly files
2 32 ghutchis
# SDCC_HOME environment variable should be set to SDCC install location
3 2 ghutchis
 
4 32 ghutchis
SDCC_ROOT=$(SDCC_HOME)
5 2 ghutchis
CC=$(SDCC_ROOT)/bin/sdcc -mz80
6
AS=$(SDCC_ROOT)/bin/as-z80
7
LD=$(SDCC_ROOT)/bin/link-z80
8
IHEX2MEM=../scripts/ihex2mem.py
9 32 ghutchis
LINK_OPTIONS=-- -m -j -x -b_CODE=0x0200 -b_DATA=0x8000 -k$(SDCC_ROOT)/device/lib/z80 -k$(SDCC_ROOT)/lib/z80 -lz80
10 2 ghutchis
AS_LINK_OPTIONS=-bBOOT_VEC=0x0000 -bINT_VEC=0x0038
11
C_LINK_OPTIONS=$(SDCC_ROOT)/share/sdcc/lib/z80/crt0.o
12
 
13
%.vmem : %.ihx
14
        $(IHEX2MEM) $^ $@
15
 
16
%.ihx : %.c
17
        $(CC) $^
18
 
19
%.o   : %.asm
20
        $(AS) -o $*.o $^
21
 
22
%.ihx : %.o
23
        $(LD) $(LINK_OPTIONS) $(AS_LINK_OPTIONS) -i $* $^ -e
24
 
25 32 ghutchis
bintr.ihx : bintr.c bintr_crt0.o
26
        $(CC) --no-std-crt0 bintr.c bintr_crt0.o
27
 
28 2 ghutchis
clean :
29
        rm -f *.map
30
        rm -f *.mem
31
        rm -f *.rel
32
        rm -f *.rst
33
        rm -f *.sym
34
        rm -f *.o
35
        rm -f *.lnk
36
        rm -f *.ihx
37
        rm -f *.lst
38
        rm -f *.vmem
39
 

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.