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

Subversion Repositories tv80

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

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 99 ghutchis
#CC=$(SDCC_ROOT)/bin/sdcc -mz80
6
#AS=$(SDCC_ROOT)/bin/as-z80
7
#LD=$(SDCC_ROOT)/bin/link-z80
8
CC=sdcc -mz80
9
AS=as-z80
10
LD=link-z80
11 2 ghutchis
IHEX2MEM=../scripts/ihex2mem.py
12 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
13 2 ghutchis
AS_LINK_OPTIONS=-bBOOT_VEC=0x0000 -bINT_VEC=0x0038
14
C_LINK_OPTIONS=$(SDCC_ROOT)/share/sdcc/lib/z80/crt0.o
15
 
16
%.vmem : %.ihx
17
        $(IHEX2MEM) $^ $@
18
 
19
%.ihx : %.c
20
        $(CC) $^
21 89 ghutchis
        rm -f $*.asm
22 2 ghutchis
 
23
%.o   : %.asm
24 89 ghutchis
        $(AS) -l -o $*.o $^
25 2 ghutchis
 
26 99 ghutchis
%.ihx : %.ast
27
        $(AS) -l -o $*.o $^
28
        $(CC) --no-std-crt0 $*.o
29
 
30 95 ghutchis
#hello.ihx : hello.c bintr_crt0.o
31
#       $(CC) $^ --no-std-crt0 bintr_crt0.o
32 99 ghutchis
#otir.ihx : otir.o
33
#       $(CC) --no-std-crt0 $^
34 95 ghutchis
 
35 2 ghutchis
%.ihx : %.o
36 89 ghutchis
        #$(LD) $(LINK_OPTIONS) $(AS_LINK_OPTIONS) -i $* $^ -e
37 95 ghutchis
        $(CC) $^
38 2 ghutchis
 
39 32 ghutchis
bintr.ihx : bintr.c bintr_crt0.o
40
        $(CC) --no-std-crt0 bintr.c bintr_crt0.o
41
 
42 77 ghutchis
rc4.o : rc4.c
43
        $(CC) -c -I. $^
44
 
45
rc4test.o : rc4test.c
46
        $(CC) -c -I. $^
47
 
48
rc4test.ihx : rc4test.o rc4.o
49
        $(CC) $^
50
 
51 2 ghutchis
clean :
52
        rm -f *.map
53
        rm -f *.mem
54
        rm -f *.rel
55
        rm -f *.rst
56
        rm -f *.sym
57
        rm -f *.o
58
        rm -f *.lnk
59
        rm -f *.ihx
60
        rm -f *.lst
61
        rm -f *.vmem
62
 

powered by: WebSVN 2.1.0

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