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

Subversion Repositories test_project

[/] [test_project/] [trunk/] [sw/] [support/] [Makefile] - Blame information for rev 25

Go to most recent revision | Details | Compare with Previous | View Log

Line No. Rev Author Line
1 25 julius
include Makefile.inc
2
 
3
all: libsupport.a reset-nocache.o reset-ic.o reset-dc.o reset-icdc.o
4
 
5
libsupport.a: support.o int.o except.o
6
        $(OR32_TOOL_PREFIX)-ar cru libsupport.a support.o except.o int.o
7
        $(OR32_TOOL_PREFIX)-ranlib libsupport.a
8
 
9
support.o: support.c
10
        $(OR32_TOOL_PREFIX)-gcc -O2 -c -o $@ $?
11
 
12
reset-nocache.o: reset.S
13
        $(OR32_TOOL_PREFIX)-gcc -O2 -c -DIC=0 -DDC=0 -o $@ $?
14
 
15
reset-dc.o: reset.S
16
        $(OR32_TOOL_PREFIX)-gcc -O2 -c -DIC=0 -DDC=1 -o $@ $?
17
 
18
reset-ic.o: reset.S
19
        $(OR32_TOOL_PREFIX)-gcc -O2 -c -DIC=1 -DDC=0 -o $@ $?
20
 
21
reset-icdc.o: reset.S
22
        $(OR32_TOOL_PREFIX)-gcc -O2 -c -DIC=1 -DDC=1 -o $@ $?
23
 
24
except.o: except.S
25
        $(OR32_TOOL_PREFIX)-gcc -O2 -c -o $@ $?
26
 
27
int.o: int.c
28
        $(OR32_TOOL_PREFIX)-gcc -O2 -c -o $@ $?
29
 
30
clean:
31
        rm -rf *.o *.a

powered by: WebSVN 2.1.0

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