2000-09-29 13:46:07 +00:00
|
|
|
# Makefile.ia64 -- with config changes.
|
|
|
|
# Copyright 1990 W. Jolitz
|
|
|
|
# from: src/sys/conf/Makefile.alpha,v 1.76
|
|
|
|
# $FreeBSD$
|
|
|
|
#
|
|
|
|
# Makefile for FreeBSD
|
|
|
|
#
|
|
|
|
# This makefile is constructed from a machine description:
|
|
|
|
# config machineid
|
|
|
|
# Most changes should be made in the machine description
|
2000-12-10 04:31:16 +00:00
|
|
|
# /sys/ia64/conf/``machineid''
|
2000-09-29 13:46:07 +00:00
|
|
|
# after which you should do
|
|
|
|
# config machineid
|
2001-10-26 10:33:45 +00:00
|
|
|
# Generic makefile changes should be made in
|
|
|
|
# /sys/conf/Makefile.ia64
|
2000-09-29 13:46:07 +00:00
|
|
|
# after which config should be rerun for all machines.
|
|
|
|
#
|
|
|
|
|
|
|
|
# The Linux cross tools don't understand -fformat-extensions
|
|
|
|
CWARNFLAGS= -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes \
|
|
|
|
-Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual \
|
2001-10-30 09:37:00 +00:00
|
|
|
-ffreestanding
|
2001-10-30 09:09:13 +00:00
|
|
|
CC= ia64-unknown-linux-gcc
|
2000-09-29 13:46:07 +00:00
|
|
|
LD= ia64-unknown-linux-ld
|
2001-01-28 06:39:56 +00:00
|
|
|
NM= ia64-unknown-linux-nm
|
2000-09-29 13:46:07 +00:00
|
|
|
SIZE= ia64-unknown-linux-size
|
|
|
|
OBJCOPY= ia64-unknown-linux-objcopy
|
2001-01-28 06:39:56 +00:00
|
|
|
OBJDUMP= ia64-unknown-linux-objdump
|
2000-09-29 13:46:07 +00:00
|
|
|
MACHINE_ARCH= ia64
|
2001-11-02 21:34:20 +00:00
|
|
|
FMT= # Needs to be blank for linux cross tools.
|
2000-09-29 13:46:07 +00:00
|
|
|
|
|
|
|
# Which version of config(8) is required.
|
2001-08-27 05:11:53 +00:00
|
|
|
%VERSREQ= 500008
|
2000-09-29 13:46:07 +00:00
|
|
|
|
|
|
|
STD8X16FONT?= iso
|
|
|
|
|
|
|
|
.if !defined(S)
|
|
|
|
.if exists(./@/.)
|
|
|
|
S= ./@
|
|
|
|
.else
|
2001-06-30 06:29:47 +00:00
|
|
|
S= ../../..
|
2000-09-29 13:46:07 +00:00
|
|
|
.endif
|
|
|
|
.endif
|
2001-11-02 21:34:20 +00:00
|
|
|
.include "$S/conf/kern.pre.mk"
|
2000-09-29 13:46:07 +00:00
|
|
|
|
|
|
|
ASM_CFLAGS= -x assembler-with-cpp -Wa,-x -DLOCORE ${CFLAGS}
|
|
|
|
|
|
|
|
%BEFORE_DEPEND
|
|
|
|
|
|
|
|
%OBJS
|
|
|
|
|
2000-11-25 03:25:34 +00:00
|
|
|
%FILES.c
|
2000-09-29 13:46:07 +00:00
|
|
|
|
2000-11-25 03:25:34 +00:00
|
|
|
%FILES.s
|
2000-09-29 13:46:07 +00:00
|
|
|
|
2000-11-25 03:25:34 +00:00
|
|
|
%FILES.m
|
2000-09-29 13:46:07 +00:00
|
|
|
|
|
|
|
%CLEAN
|
|
|
|
|
|
|
|
%RULES
|
2001-11-11 20:33:02 +00:00
|
|
|
|
|
|
|
.include "$S/conf/kern.post.mk"
|