ada-examples-4-10-branchada-examples-4-6-branchada-examples-4-7-branchada-examples-4-8-branchada-examples-4-9-branch
Line | |
---|
1 | # |
---|
2 | # Makefile for hello world example |
---|
3 | # |
---|
4 | |
---|
5 | MAIN=hello |
---|
6 | |
---|
7 | # Tool paths |
---|
8 | target=sparc-rtems |
---|
9 | tooldir=/home/joel/gnat-3.10b/${target}/ |
---|
10 | rtemsdir=${tooldir}/rtems/erc32 |
---|
11 | |
---|
12 | # Tool names |
---|
13 | GCC=${tooldir}/bin/${target}-gcc |
---|
14 | GNATMAKE=${tooldir}/bin/${target}-gnatmake |
---|
15 | SIZE=${tooldir}/bin/${target}-size |
---|
16 | SIS=${tooldir}/bin/sis |
---|
17 | GDB=${tooldir}/bin/sis-gdb |
---|
18 | |
---|
19 | CARGS=-B${rtemsdir}/lib/ -specs bsp_specs -qrtems -mcypress |
---|
20 | |
---|
21 | all: init.o |
---|
22 | $(GNATMAKE) -v -O -gnata -gnatE -gnato $(MAIN) -g \ |
---|
23 | -bargs -r \ |
---|
24 | -cargs $(CARGS) \ |
---|
25 | -largs $(CARGS) init.o |
---|
26 | $(SIZE) $(MAIN) |
---|
27 | |
---|
28 | |
---|
29 | |
---|
30 | init.o: init.c |
---|
31 | $(GCC) -O4 -g -Wall -ansi -fasm $(CARGS) -c init.c |
---|
32 | |
---|
33 | run: |
---|
34 | $(SIS) $(MAIN) |
---|
35 | |
---|
36 | gdb: |
---|
37 | $(GDB) $(MAIN) |
---|
38 | |
---|
39 | clean: |
---|
40 | rm -f b_$(MAIN).c b_$(MAIN).o *.o *.ali $(MAIN) |
---|
Note: See
TracBrowser
for help on using the repository browser.