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

Subversion Repositories tv80

[/] [tv80/] [trunk/] [tests/] [Makefile] - Blame information for rev 89

Go to most recent revision | 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 89 ghutchis
        rm -f $*.asm
19 2 ghutchis
 
20
%.o   : %.asm
21 89 ghutchis
        $(AS) -l -o $*.o $^
22 2 ghutchis
 
23
%.ihx : %.o
24 89 ghutchis
        #$(LD) $(LINK_OPTIONS) $(AS_LINK_OPTIONS) -i $* $^ -e
25
        $(CC) $^ --no-std-crt0 bintr_crt0.o
26 2 ghutchis
 
27 32 ghutchis
bintr.ihx : bintr.c bintr_crt0.o
28
        $(CC) --no-std-crt0 bintr.c bintr_crt0.o
29
 
30 77 ghutchis
rc4.o : rc4.c
31
        $(CC) -c -I. $^
32
 
33
rc4test.o : rc4test.c
34
        $(CC) -c -I. $^
35
 
36
rc4test.ihx : rc4test.o rc4.o
37
        $(CC) $^
38
 
39 2 ghutchis
clean :
40
        rm -f *.map
41
        rm -f *.mem
42
        rm -f *.rel
43
        rm -f *.rst
44
        rm -f *.sym
45
        rm -f *.o
46
        rm -f *.lnk
47
        rm -f *.ihx
48
        rm -f *.lst
49
        rm -f *.vmem
50
 

powered by: WebSVN 2.1.0

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