summaryrefslogtreecommitdiffstats
path: root/firmware/test/i2c/Makefile
blob: 0d3ff884ed72f638405c132791cad81cdfc8e7df (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
CC    = sh-elf-gcc 
LD    = sh-elf-ld
AR    = sh-elf-ar
AS    = sh-elf-as
OC    = sh-elf-objcopy

INCLUDES=-I../../common -I../.. -I../../drivers

TARGET = -DARCHOS_PLAYER_OLD=1

CFLAGS = -g -Wall -m1 -save-temps -nostdlib -Wstrict-prototypes -fschedule-insns -fno-builtin $(INCLUDES) $(TARGET) -DDEBUG
AFLAGS += -small -relax

OBJS= ../../crt0.o main.o ../../drivers/i2c.o ../../drivers/mas.o \
	../../debug.o ../../kernel.o thread.o ../../common/sprintf.o \
	../../panic.o ../../system.o ../../drivers/led.o \
	../../drivers/lcd.o ata.o ../../drivers/fat.o \
	../../common/disk.o ../../common/file.o ../../common/dir.o

%.o: %.S
	$(CC) -o $@ $(CFLAGS) $(INCLUDES) $(DEFS) -c $<


all : archos.mod

main.o: main.c

archos.elf : $(OBJS) app.lds
	$(CC) -nostartfiles -o archos.elf $(OBJS) -lgcc -Tapp.lds -Wl,-Map,archos.map

archos.bin : archos.elf
	$(OC) -O binary archos.elf archos.bin

archos.asm: archos.bin
	sh2d -sh1 archos.bin > archos.asm

archos.mod : archos.bin
	scramble archos.bin archos.mod

archos.mod.gz : archos.mod
	gzip -f archos.mod

dist:
	tar czvf dist.tar.gz Makefile main.c start.s app.lds

clean:
	-rm -f $(OBJS) *.x *.i *.o *.elf *.bin *.map *.mod *.bak *~

install:
	mount /mnt/archos; cp archos.mod /mnt/archos; umount /mnt/archos

thread.o: ../../thread.c
	$(CC) -O $(CFLAGS) -c $<

ata.o: ../../drivers/ata.c
	$(CC) -O $(CFLAGS) -c $<

main.o: main.c
	$(CC) -O $(CFLAGS) -c $<