Deleted Added
full compact
Makefile.arm (177916) Makefile.arm (177923)
1# Makefile.arm -- with config changes.
2# Copyright 1990 W. Jolitz
3# from: @(#)Makefile.i386 7.1 5/10/91
1# Makefile.arm -- with config changes.
2# Copyright 1990 W. Jolitz
3# from: @(#)Makefile.i386 7.1 5/10/91
4# $FreeBSD: head/sys/conf/Makefile.arm 177916 2008-04-04 17:35:24Z raj $
4# $FreeBSD: head/sys/conf/Makefile.arm 177923 2008-04-04 19:33:09Z imp $
5#
6# Makefile for FreeBSD
7#
8# This makefile is constructed from a machine description:
9# config machineid
10# Most changes should be made in the machine description
11# /sys/arm/conf/``machineid''
12# after which you should do

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

35
36SYSTEM_LD:= ${SYSTEM_LD:$S/conf/ldscript.$M=ldscript.$M}
37SYSTEM_DEP:= ${SYSTEM_DEP:$S/conf/ldscript.$M=ldscript.$M}
38
39.if defined(ARM_BIG_ENDIAN)
40CC += -mbig-endian
41SYSTEM_LD += -EB
42LD += -EB
5#
6# Makefile for FreeBSD
7#
8# This makefile is constructed from a machine description:
9# config machineid
10# Most changes should be made in the machine description
11# /sys/arm/conf/``machineid''
12# after which you should do

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

35
36SYSTEM_LD:= ${SYSTEM_LD:$S/conf/ldscript.$M=ldscript.$M}
37SYSTEM_DEP:= ${SYSTEM_DEP:$S/conf/ldscript.$M=ldscript.$M}
38
39.if defined(ARM_BIG_ENDIAN)
40CC += -mbig-endian
41SYSTEM_LD += -EB
42LD += -EB
43.else
44CC += -mlittle-endian
45SYSTEM_LD += -EL
46LD += -EL
43.endif
44
45
46.if !defined(DEBUG) && !defined(PROFLEVEL)
47STRIP_FLAGS = -S
48.endif
49
50DDB_ENABLED!= grep DDB opt_ddb.h || true

--- 93 unchanged lines hidden ---
47.endif
48
49
50.if !defined(DEBUG) && !defined(PROFLEVEL)
51STRIP_FLAGS = -S
52.endif
53
54DDB_ENABLED!= grep DDB opt_ddb.h || true

--- 93 unchanged lines hidden ---