Deleted Added
sdiff udiff text old ( 232263 ) new ( 250840 )
full compact
1# Makefile.i386 -- with config changes.
2# Copyright 1990 W. Jolitz
3# from: @(#)Makefile.i386 7.1 5/10/91
4# $FreeBSD: head/sys/conf/Makefile.i386 250840 2013-05-21 03:05:49Z marcel $
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/i386/conf/``machineid''
12# after which you should do

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

25.if exists(./@/.)
26S= ./@
27.else
28S= ../../..
29.endif
30.endif
31.include "$S/conf/kern.pre.mk"
32
33INCLUDES+= -I$S/contrib/libfdt
34
35MACHINE=i386
36
37MKMODULESENV+= MACHINE=${MACHINE}
38
39# XXX: clang integrated-as doesn't grok .codeNN directives yet
40ASM_CFLAGS.acpi_wakecode.S= ${CLANG_NO_IAS}
41ASM_CFLAGS.mpboot.s= ${CLANG_NO_IAS}
42ASM_CFLAGS+= ${ASM_CFLAGS.${.IMPSRC:T}}

--- 16 unchanged lines hidden ---