Deleted Added
full compact
Makefile.inc (22996) Makefile.inc (24336)
1#
1#
2# $Id$
2# $Id: Makefile.inc,v 1.19 1997/02/22 15:44:48 peter Exp $
3#
4
5# Sometimes this is .include'd several times...
6.if !defined(GCCDIR)
7GCCDIR= ${.CURDIR}/../../../../contrib/gcc
8.PATH: ../cc_tools ${GCCDIR} ${GCCDIR}/cp ${GCCDIR}/objc
9
10BISON?= bison
11
12# Machine description.
13MD_FILE= ${GCCDIR}/config/i386/i386.md
14OUT_FILE= i386.c
15OUT_OBJ= i386
16.PATH: ${GCCDIR}/config/i386
17
18# Pick aout for now. the elf config is not binary compatable.
3#
4
5# Sometimes this is .include'd several times...
6.if !defined(GCCDIR)
7GCCDIR= ${.CURDIR}/../../../../contrib/gcc
8.PATH: ../cc_tools ${GCCDIR} ${GCCDIR}/cp ${GCCDIR}/objc
9
10BISON?= bison
11
12# Machine description.
13MD_FILE= ${GCCDIR}/config/i386/i386.md
14OUT_FILE= i386.c
15OUT_OBJ= i386
16.PATH: ${GCCDIR}/config/i386
17
18# Pick aout for now. the elf config is not binary compatable.
19BINFORMAT= aout
20#BINFORMAT= elf
19BINFORMAT?= aout
20#BINFORMAT?= elf
21
22.if ${BINFORMAT} == aout
23CFLAGS+= -DFREEBSD_AOUT
24target= i386-unknown-freebsd
25.endif
26.if ${BINFORMAT} == elf
27CFLAGS+= -DFREEBSD_ELF
28target= i386-unknown-freebsdelf

--- 24 unchanged lines hidden ---
21
22.if ${BINFORMAT} == aout
23CFLAGS+= -DFREEBSD_AOUT
24target= i386-unknown-freebsd
25.endif
26.if ${BINFORMAT} == elf
27CFLAGS+= -DFREEBSD_ELF
28target= i386-unknown-freebsdelf

--- 24 unchanged lines hidden ---