Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
L
linux
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
linux
Commits
79455a34
Commit
79455a34
authored
May 13, 2002
by
Kai Germaschewski
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
IA64: Use standard AS rule
parent
5e8a4a7d
Changes
8
Show whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
24 additions
and
34 deletions
+24
-34
arch/ia64/dig/Makefile
arch/ia64/dig/Makefile
+1
-4
arch/ia64/ia32/Makefile
arch/ia64/ia32/Makefile
+3
-4
arch/ia64/kernel/Makefile
arch/ia64/kernel/Makefile
+3
-4
arch/ia64/lib/Makefile
arch/ia64/lib/Makefile
+3
-2
arch/ia64/sn/fakeprom/Makefile
arch/ia64/sn/fakeprom/Makefile
+4
-5
arch/ia64/sn/kernel/Makefile
arch/ia64/sn/kernel/Makefile
+4
-5
arch/ia64/sn/kernel/sn1/Makefile
arch/ia64/sn/kernel/sn1/Makefile
+3
-5
arch/ia64/sn/kernel/sn2/Makefile
arch/ia64/sn/kernel/sn2/Makefile
+3
-5
No files found.
arch/ia64/dig/Makefile
View file @
79455a34
...
...
@@ -5,10 +5,7 @@
# Copyright (C) Srinivasa Thirumalachar (sprasad@engr.sgi.com)
#
.S.s
:
$(CPP)
$(AFLAGS)
-o
$*
.s
$<
.S.o
:
$(CC)
$(AFLAGS)
-c
-o
$*
.o
$<
USE_STANDARD_AS_RULE
:=
true
all
:
dig.a
...
...
arch/ia64/ia32/Makefile
View file @
79455a34
...
...
@@ -2,10 +2,9 @@
# Makefile for the ia32 kernel emulation subsystem.
#
.S.s
:
$(CPP)
$(AFLAGS)
$(AFLAGS_KERNEL)
-o
$*
.s
$<
.S.o
:
$(CC)
$(AFLAGS)
$(AFLAGS_KERNEL)
-c
-o
$*
.o
$<
USE_STANDARD_AS_RULE
:=
true
EXTRA_AFLAGS
:=
$(AFLAGS_KERNEL)
all
:
ia32.o
...
...
arch/ia64/kernel/Makefile
View file @
79455a34
...
...
@@ -2,10 +2,9 @@
# Makefile for the linux kernel.
#
.S.s
:
$(CPP)
$(AFLAGS)
$(AFLAGS_KERNEL)
-o
$*
.s
$<
.S.o
:
$(CC)
$(AFLAGS)
$(AFLAGS_KERNEL)
-c
-o
$*
.o
$<
USE_STANDARD_AS_RULE
:=
true
EXTRA_AFLAGS
:=
$(AFLAGS_KERNEL)
all
:
kernel.o head.o init_task.o
...
...
arch/ia64/lib/Makefile
View file @
79455a34
...
...
@@ -2,8 +2,9 @@
# Makefile for ia64-specific library routines..
#
.S.o
:
$(CC)
$(AFLAGS)
$(AFLAGS_KERNEL)
-c
$<
-o
$@
USE_STANDARD_AS_RULE
:=
true
EXTRA_AFLAGS
:=
$(AFLAGS_KERNEL)
L_TARGET
=
lib.a
...
...
arch/ia64/sn/fakeprom/Makefile
View file @
79455a34
...
...
@@ -6,6 +6,10 @@
# Copyright (c) 2000-2001 Silicon Graphics, Inc. All rights reserved.
#
USE_STANDARD_AS_RULE
:=
true
EXTRA_AFLAGS
:=
$(AFLAGS_KERNEL)
TOPDIR
=
../../../..
HPATH
=
$(TOPDIR)
/include
...
...
@@ -17,11 +21,6 @@ obj-y=fprom
fprom
:
$(OBJ)
$(LD)
-static
-Tfprom
.lds
-o
fprom
$(OBJ)
$(LIB)
.S.o
:
$(CC)
-D__ASSEMBLY__
$(AFLAGS)
$(AFLAGS_KERNEL)
-c
-o
$*
.o
$<
.c.o
:
$(CC)
$(CFLAGS)
$(CFLAGS_KERNEL)
-c
-o
$*
.o
$<
clean
:
rm
-f
*
.o fprom
...
...
arch/ia64/sn/kernel/Makefile
View file @
79455a34
...
...
@@ -31,12 +31,11 @@
# http://oss.sgi.com/projects/GenInfo/NoticeExplan
#
EXTRA_CFLAGS
:=
-DLITTLE_ENDIAN
USE_STANDARD_AS_RULE
:=
true
EXTRA_AFLAGS
:=
$(AFLAGS_KERNEL)
.S.s
:
$(CPP)
$(AFLAGS)
$(AFLAGS_KERNEL)
-o
$*
.s
$<
.S.o
:
$(CC)
$(AFLAGS)
$(AFLAGS_KERNEL)
-c
-o
$*
.o
$<
EXTRA_CFLAGS
:=
-DLITTLE_ENDIAN
O_TARGET
=
sn.o
...
...
arch/ia64/sn/kernel/sn1/Makefile
View file @
79455a34
...
...
@@ -32,13 +32,11 @@
# http://oss.sgi.com/projects/GenInfo/NoticeExplan
#
USE_STANDARD_AS_RULE
:=
true
EXTRA_
CFLAGS
:=
-DLITTLE_ENDIAN
EXTRA_
AFLAGS
:=
$(AFLAGS_KERNEL)
.S.s
:
$(CPP)
$(AFLAGS)
$(AFLAGS_KERNEL)
-o
$*
.s
$<
.S.o
:
$(CC)
$(AFLAGS)
$(AFLAGS_KERNEL)
-c
-o
$*
.o
$<
EXTRA_CFLAGS
:=
-DLITTLE_ENDIAN
all
:
sn1.a
...
...
arch/ia64/sn/kernel/sn2/Makefile
View file @
79455a34
...
...
@@ -32,13 +32,11 @@
# http://oss.sgi.com/projects/GenInfo/NoticeExplan
#
USE_STANDARD_AS_RULE
:=
true
EXTRA_
CFLAGS
:=
-DLITTLE_ENDIAN
EXTRA_
AFLAGS
:=
$(AFLAGS_KERNEL)
.S.s
:
$(CPP)
$(AFLAGS)
$(AFLAGS_KERNEL)
-o
$*
.s
$<
.S.o
:
$(CC)
$(AFLAGS)
$(AFLAGS_KERNEL)
-c
-o
$*
.o
$<
EXTRA_CFLAGS
:=
-DLITTLE_ENDIAN
all
:
sn2.a
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment