2016-01-29 15:12:31 +00:00
|
|
|
# Makefile.riscv -- with config changes.
|
|
|
|
# Copyright 1990 W. Jolitz
|
|
|
|
# from: @(#)Makefile.i386 7.1 5/10/91
|
|
|
|
# from FreeBSD: src/sys/conf/Makefile.i386,v 1.255 2002/02/20 23:35:49
|
|
|
|
# $FreeBSD$
|
|
|
|
#
|
|
|
|
# Makefile for FreeBSD
|
|
|
|
#
|
|
|
|
# RISCVTODO: copy pasted from aarch64, needs to be
|
|
|
|
# constructed from a machine description:
|
|
|
|
# config machineid
|
|
|
|
# Most changes should be made in the machine description
|
|
|
|
# /sys/riscv/conf/``machineid''
|
|
|
|
# after which you should do
|
|
|
|
# config machineid
|
|
|
|
# Generic makefile changes should be made in
|
|
|
|
# /sys/conf/Makefile.riscv
|
|
|
|
# after which config should be rerun for all machines.
|
|
|
|
#
|
|
|
|
|
|
|
|
# Which version of config(8) is required.
|
2018-07-17 14:11:30 +00:00
|
|
|
%VERSREQ= 600012
|
2016-01-29 15:12:31 +00:00
|
|
|
|
|
|
|
.if !defined(S)
|
|
|
|
S= ../../..
|
|
|
|
.endif
|
|
|
|
.include "$S/conf/kern.pre.mk"
|
|
|
|
|
|
|
|
INCLUDES+= -I$S/contrib/libfdt
|
|
|
|
|
2017-08-10 14:18:09 +00:00
|
|
|
SYSTEM_LD= @${LD} -N -m ${LD_EMULATION} -Bdynamic -T ${LDSCRIPT} ${_LDFLAGS} \
|
|
|
|
--no-warn-mismatch --warn-common --export-dynamic \
|
|
|
|
--dynamic-linker /red/herring \
|
|
|
|
-o ${.TARGET} -X ${SYSTEM_OBJS} vers.o
|
|
|
|
|
2016-01-29 15:12:31 +00:00
|
|
|
.if !empty(DDB_ENABLED)
|
2016-03-10 15:51:43 +00:00
|
|
|
CFLAGS += -fno-omit-frame-pointer -fno-optimize-sibling-calls
|
2016-01-29 15:12:31 +00:00
|
|
|
.endif
|
|
|
|
|
2016-05-24 16:30:05 +00:00
|
|
|
# hack because genassym.c includes sys/bus.h which includes these.
|
|
|
|
genassym.o: bus_if.h device_if.h
|
|
|
|
|
2016-01-29 15:12:31 +00:00
|
|
|
%BEFORE_DEPEND
|
|
|
|
|
|
|
|
%OBJS
|
|
|
|
|
|
|
|
%FILES.c
|
|
|
|
|
|
|
|
%FILES.s
|
|
|
|
|
|
|
|
%FILES.m
|
|
|
|
|
|
|
|
%CLEAN
|
|
|
|
|
|
|
|
%RULES
|
|
|
|
|
|
|
|
.include "$S/conf/kern.post.mk"
|