Deleted Added
full compact
Makefile.inc (18390) Makefile.inc (18441)
1#
1#
2# $Id$
2# $Id: Makefile.inc,v 1.15 1996/09/19 15:38:01 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

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

41.endif
42
43.if exists(${.OBJDIR}/../cc_int)
44LIBDESTDIR= ${.OBJDIR}/../cc_int
45.else
46LIBDESTDIR= ${.CURDIR}/../cc_int
47.endif
48
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

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

41.endif
42
43.if exists(${.OBJDIR}/../cc_int)
44LIBDESTDIR= ${.OBJDIR}/../cc_int
45.else
46LIBDESTDIR= ${.CURDIR}/../cc_int
47.endif
48
49# XXX LDDESTDIR isn't a directory and there is no standard name for the dir
50LDDESTDIR= -L${LIBDESTDIR}
51.if defined(SHARED_LIBCC_INT)
52LIBCC_INT= ${LIBDESTDIR}/libcc_int.so.272.0
53.else
54LIBCC_INT= ${LIBDESTDIR}/libcc_int.a
49LIBCC_INT= ${LIBDESTDIR}/libcc_int.a
55.endif
56
57.endif
50
51.endif