8ab1d79d16
Notice that the libgcc DOESN'T change number, because there are no changes. Also now the gnu2bmake stuff is synchronized again. I commit this so that others can test too. You might want to postpone any "make worlds" until tomorrow, to avoid any problems I didn't see in the first pass. Thanks to Bruce for rounding up our changes to gcc.
29 lines
754 B
Makefile
29 lines
754 B
Makefile
#
|
|
# $Id$
|
|
#
|
|
|
|
CFLAGS+= -I${.CURDIR} -I${.CURDIR}/../include
|
|
CFLAGS+= -Dbsd4_4
|
|
CFLAGS+= -DGCC_INCLUDE_DIR=\"FOO\"
|
|
CFLAGS+= -DTOOL_INCLUDE_DIR=\"FOO\"
|
|
CFLAGS+= -DGPLUSPLUS_INCLUDE_DIR=\"FOO\"
|
|
CFLAGS+= -DDEFAULT_TARGET_VERSION=\"2.6.2\"
|
|
CFLAGS+= -DDEFAULT_TARGET_MACHINE=\"i386--freebsd\"
|
|
CFLAGS+= -DMD_EXEC_PREFIX=\"/usr/libexec/\"
|
|
CFLAGS+= -DSTANDARD_STARTFILE_PREFIX=\"/usr/lib\"
|
|
CFLAGS+= -DGCC_NAME=\"cc\"
|
|
|
|
.if exists(${.CURDIR}/../cc_int/obj)
|
|
LIBDESTDIR= ${.CURDIR}/../cc_int/obj
|
|
.else
|
|
LIBDESTDIR= ${.CURDIR}/../cc_int
|
|
.endif
|
|
|
|
# XXX LDDESTDIR isn't a directory and there is no standard name for the dir
|
|
LDDESTDIR= -L${LIBDESTDIR}
|
|
.if defined(SHARED_LIBCC_INT)
|
|
LIBCC_INT= ${LIBDESTDIR}/libcc_int.so.262.0
|
|
.else
|
|
LIBCC_INT= ${LIBDESTDIR}/libcc_int.a
|
|
.endif
|