diff options
Diffstat (limited to 'gnu/usr.bin/cc/Makefile.fe')
-rw-r--r-- | gnu/usr.bin/cc/Makefile.fe | 29 |
1 files changed, 0 insertions, 29 deletions
diff --git a/gnu/usr.bin/cc/Makefile.fe b/gnu/usr.bin/cc/Makefile.fe deleted file mode 100644 index a681510cf02e..000000000000 --- a/gnu/usr.bin/cc/Makefile.fe +++ /dev/null @@ -1,29 +0,0 @@ -# $FreeBSD$ - -# Front-end-only bits - -.include "Makefile.ver" - -# -# These were previously defined in gcc.c. Just copy previous values from -# there. We ifdef most of them out for FREEBSD_NATIVE builds anyway. -# gcc.c won't compile without them though. -DRIVER_DEFINES = -DGCC_DRIVER \ - -DDEFAULT_TARGET_VERSION=\"$(BASEVER)\" \ - -DDEFAULT_TARGET_MACHINE=\"$(GCC_TARGET)\" \ - -DENABLE_SHARED_LIBGCC - -CFLAGS+= ${DRIVER_DEFINES} - -.PATH: ../cc_tools ${GCCDIR} ${GCCDIR}/doc ${GCCDIR}/config/${GCC_CPU} - -SRCS= gcc.c opts-common.c options.c intl.c prefix.c version.c - -# Include -march=native support for native-ish compilers only -.if (${MACHINE_ARCH} == "i386" || ${MACHINE_ARCH} == "amd64") && \ - ${GCC_CPU} == "i386" -SRCS+= driver-${GCC_CPU}.c -.endif - -DPADD= ${LIBCPP} ${LIBIBERTY} -LDADD= ${LIBCPP} ${LIBIBERTY} |