Deleted Added
sdiff udiff text old ( 9192:0fd64ccb4c93 ) new ( 9333:b037944e4908 )
full compact
1# Copyright (c) 2010 ARM Limited
2# All rights reserved.
3#
4# The license below extends only to copyright in the software and shall
5# not be construed as granting a license to any other intellectual
6# property including but not limited to intellectual property relating
7# to a hardware implementation of the functionality of the software
8# licensed hereunder. You may use the software subject to the license

--- 32 unchanged lines hidden (view full) ---

41
42### If we are not compiling on an arm, we must use cross tools ###
43ifneq ($(shell uname -m), armv7l)
44CROSS_COMPILE?=arm-linux-gnueabi-
45endif
46CC=$(CROSS_COMPILE)gcc
47AS=$(CROSS_COMPILE)as
48LD=$(CROSS_COMPILE)ld
49
50JC=javac
51JH=javah
52JR=jar
53### JDK_PATH must be set to build gem5OpJni
54#JDK_PATH=/path/to/jdk/version_number
55
56CFLAGS=-O2 -I $(JDK_PATH)/include/ -I $(JDK_PATH)/include/linux
57
58OBJS=m5.o m5op_arm.o
59JNI_OBJS=m5op_arm.o jni_gem5Op.o
60
61all: m5
62
63%.o: %.S
64 $(CC) $(CFLAGS) -o $@ -c $<
65
66%.o: %.c
67 $(CC) $(CFLAGS) -o $@ -c $<
68
69m5: $(OBJS)
70 $(CC) -o $@ $(OBJS)
71
72gem5OpJni: gem5OpJni.jar $(JNI_OBJS)
73 $(CC) --shared -o lib$@.so $(JNI_OBJS)
74
75gem5OpJni.jar:
76 $(JC) jni/gem5Op.java; \
77 $(JH) jni.gem5Op; \
78 $(JR) cvf $@ jni/*.class
79
80clean:
81 rm -f *.o m5 libgemOpJni.so gem5OpJni.jar jni/*.class