Makefile.arm (9192:0fd64ccb4c93) Makefile.arm (9333:b037944e4908)
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
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
49AR=$(CROSS_COMPILE)ar
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
50
51JC=javac
52JH=javah
53JR=jar
54### JDK_PATH must be set to build gem5OpJni
55#JDK_PATH=/path/to/jdk/version_number
56
57CFLAGS=-O2 -I $(JDK_PATH)/include/ -I $(JDK_PATH)/include/linux
58LDFLAGS=-L. -lm5
57
59
58OBJS=m5.o m5op_arm.o
60LIB_OBJS=m5op_arm.o
61OBJS=m5.o
59JNI_OBJS=m5op_arm.o jni_gem5Op.o
60
62JNI_OBJS=m5op_arm.o jni_gem5Op.o
63
61all: m5
64all: libm5.a m5
62
63%.o: %.S
64 $(CC) $(CFLAGS) -o $@ -c $<
65
66%.o: %.c
67 $(CC) $(CFLAGS) -o $@ -c $<
68
69m5: $(OBJS)
65
66%.o: %.S
67 $(CC) $(CFLAGS) -o $@ -c $<
68
69%.o: %.c
70 $(CC) $(CFLAGS) -o $@ -c $<
71
72m5: $(OBJS)
70 $(CC) -o $@ $(OBJS)
73 $(CC) -o $@ $(OBJS) $(LDFLAGS)
71
74
75libm5.a: $(LIB_OBJS)
76 $(AR) rcs $@ $<
77
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:
78gem5OpJni: gem5OpJni.jar $(JNI_OBJS)
79 $(CC) --shared -o lib$@.so $(JNI_OBJS)
80
81gem5OpJni.jar:
82 $(JC) jni/gem5Op.java; \
83 $(JH) jni.gem5Op; \
84 $(JR) cvf $@ jni/*.class
85
86clean:
81 rm -f *.o m5 libgemOpJni.so gem5OpJni.jar jni/*.class
87 rm -f *.o m5 libgemOpJni.so gem5OpJni.jar jni/*.class libm5.a