Deleted Added
full compact
Makefile.i386 (6875) Makefile.i386 (7367)
1# Copyright 1990 W. Jolitz
2# from: @(#)Makefile.i386 7.1 5/10/91
1# Copyright 1990 W. Jolitz
2# from: @(#)Makefile.i386 7.1 5/10/91
3# $Id: Makefile.i386,v 1.56 1995/03/01 10:08:04 gibbs Exp $
3# $Id: Makefile.i386,v 1.57 1995/03/04 03:24:06 davidg Exp $
4#
5# Makefile for FreeBSD
6#
7# This makefile is constructed from a machine description:
8# config machineid
9# Most changes should be made in the machine description
10# /sys/i386/conf/``machineid''
11# after which you should do

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

20
21.if exists(./@/.)
22S= ./@
23.else
24S= ../..
25.endif
26I386= ${S}/i386
27
4#
5# Makefile for FreeBSD
6#
7# This makefile is constructed from a machine description:
8# config machineid
9# Most changes should be made in the machine description
10# /sys/i386/conf/``machineid''
11# after which you should do

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

20
21.if exists(./@/.)
22S= ./@
23.else
24S= ../..
25.endif
26I386= ${S}/i386
27
28CWARNFLAGS?=-W -Wreturn-type -Wcomment -Wredundant-decls
28CWARNFLAGS?=-W -Wreturn-type -Wcomment -Wredundant-decls -Wimplicit
29#
30# The following flags are next up for working on:
29#
30# The following flags are next up for working on:
31# -Wimplicit -Wnested-externs
31# -Wnested-externs (almost works)
32# -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations
32#
33# When working on removing warnings from code, the `-Werror' flag should be
34# of material assistance.
35#
36COPTFLAGS?=-O
37# Not ready for -I- yet. #include "foo.h" where foo.h is in the srcdir fails.
38INCLUDES= -nostdinc -I. -I$S -I$S/sys -I$S/../include
39COPTS= ${INCLUDES} ${IDENT} -DKERNEL -Di386 -DLOAD_ADDRESS=0x${LOAD_ADDRESS}

--- 155 unchanged lines hidden ---
33#
34# When working on removing warnings from code, the `-Werror' flag should be
35# of material assistance.
36#
37COPTFLAGS?=-O
38# Not ready for -I- yet. #include "foo.h" where foo.h is in the srcdir fails.
39INCLUDES= -nostdinc -I. -I$S -I$S/sys -I$S/../include
40COPTS= ${INCLUDES} ${IDENT} -DKERNEL -Di386 -DLOAD_ADDRESS=0x${LOAD_ADDRESS}

--- 155 unchanged lines hidden ---