NetBSD/gnu/usr.bin/egcs/Makefile.inc

51 lines
1.2 KiB
PHP
Raw Normal View History

# $NetBSD: Makefile.inc,v 1.13 1998/08/27 21:44:28 tv Exp $
.if !defined(GCC_MAKEFILE_INC)
GCC_MAKEFILE_INC=1
1998-08-17 06:25:44 +04:00
.include <bsd.own.mk>
# These architectures are Cygnus's default for enabling Haifa
.if (${MACHINE_ARCH} == "alpha") || (${MACHINE_ARCH} == "powerpc") || \
(${MACHINE_ARCH} == "sparc")
USE_EGCS_HAIFA=1
.endif
# gcc has files with a "rs6000" prefix for powerpc
GNU_ARCH.powerpc=rs6000
1998-08-17 06:25:44 +04:00
DIST= ${.CURDIR}/../../../dist/gcc
COMMON= ${.CURDIR}/../common
.ifnmake(print-objdir)
1998-08-28 01:42:20 +04:00
COMMONOBJ!= cd ${.CURDIR}/../common; ${MAKE} print-objdir
.endif
1998-08-17 06:25:44 +04:00
CPPFLAGS+= -I${.CURDIR}/../arch \
-I${.CURDIR}/../arch/${MACHINE_ARCH} \
-I${COMMONOBJ} \
-I${DIST} \
-I${DIST}/config \
-DIN_GCC -DNETBSD_NATIVE
HOST_CPPFLAGS= ${CPPFLAGS}
LDADD+= -lgnumalloc
DPADD+= ${LIBGNUMALLOC}
1998-08-17 06:25:44 +04:00
.PATH: ${.CURDIR}/../arch \
${DIST} \
${DIST}/config
1998-08-17 06:25:44 +04:00
EGCS_VERSION!= sed -e 's/.*\(egcs-[0-9\.]*\).*/\1/' ${DIST}/version.c
1998-08-17 06:25:44 +04:00
CPPFLAGS+= -DHAVE_CONFIG_H -DPREFIX=\"/usr\" \
-DDEFAULT_TARGET_VERSION=\"${EGCS_VERSION}\" \
-DDEFAULT_TARGET_MACHINE=\"${MACHINE_GNU_ARCH}-netbsd\" \
-DSTANDARD_STARTFILE_PREFIX=\"/usr/lib/\" \
-DSTANDARD_EXEC_PREFIX=\"/usr/libexec/\" \
-DTOOLDIR_BASE_PREFIX=\"/usr/libexec/\"
1998-08-17 06:25:44 +04:00
.if defined(USE_EGCS_HAIFA)
CPPFLAGS+= -DHAIFA
.endif
.endif