8a5f439677
Because the file is generated with -f using another Makefile, 2 different Makefiles are trying to handle the .meta file for the target. The obvious .NOMETA_CMP or .NOMETA on the ${MAKE} targets don't work as they are very limited in scope in bmake. Using .PHONY fixes the problem and ensures that the ${MAKE} command is always ran to check if it is outdated in the sub-make. An example of the problem in gnu/lib/libgcc (with make -dM): /usr/obj/root/git/freebsd/gnu/lib/libgcc/tm.h.meta: 2: a build command has changed TARGET_CPU_DEFAULT="" HEADERS="options.h i386/biarch64.h i386/i386.h i386/unix.h i386/att.h dbxelf.h elfos-undef.h elfos.h freebsd-native.h freebsd-spec.h freebsd.h i386/x86-64.h i386/freebsd.h i386/freebsd64.h defaults.h" DEFINES="" /bin/sh /root/git/freebsd/gnu/lib/libgcc/../../../contrib/gcc/mkconfig.sh tm.h vs (cd /root/git/freebsd/gnu/lib/libgcc; make -f /root/git/freebsd/gnu/lib/libgcc/../../usr.bin/cc/cc_tools/Makefile MFILE=/root/git/freebsd/gnu/lib/libgcc/../../usr.bin/cc/cc_tools/Makefile GCCDIR=/root/git/freebsd/gnu/lib/libgcc/../../../contrib/gcc tm.h) Skipping meta for tm.h: .NOMETA (cd /root/git/freebsd/gnu/lib/libgcc; make -f /root/git/freebsd/gnu/lib/libgcc/../../usr.bin/cc/cc_tools/Makefile MFILE=/root/git/freebsd/gnu/lib/libgcc/../../usr.bin/cc/cc_tools/Makefile GCCDIR=/root/git/freebsd/gnu/lib/libgcc/../../../contrib/gcc tm.h) `tm.h' is up to date. Sponsored by: EMC / Isilon Storage Division
78 lines
2.0 KiB
Makefile
78 lines
2.0 KiB
Makefile
# $FreeBSD$
|
|
|
|
.include <src.opts.mk>
|
|
MK_SSP= no
|
|
|
|
GCCDIR= ${.CURDIR}/../../../contrib/gcc
|
|
GCCLIB= ${.CURDIR}/../../../contrib/gcclibs
|
|
CCDIR= ${.CURDIR}/../../usr.bin/cc
|
|
.include "${CCDIR}/Makefile.tgt"
|
|
|
|
.PATH: ${GCCDIR}/config/${GCC_CPU} ${GCCDIR}
|
|
|
|
SRCS= crtstuff.c tconfig.h tm.h options.h
|
|
OBJS= crtbegin.o crtend.o crtbeginT.o
|
|
SOBJS= crtbeginS.o crtendS.o
|
|
CSTD?= gnu89
|
|
CFLAGS+= -DIN_GCC -DHAVE_LD_EH_FRAME_HDR -DDT_CONFIG -D__GLIBC__=3
|
|
CFLAGS.gcc+= -finhibit-size-directive -fno-toplevel-reorder
|
|
CFLAGS+= -fno-inline-functions -fno-exceptions \
|
|
-fno-zero-initialized-in-bss -fno-asynchronous-unwind-tables \
|
|
-fno-omit-frame-pointer
|
|
CFLAGS+= -I${GCCLIB}/include -I${GCCDIR}/config -I${GCCDIR} -I. \
|
|
-I${CCDIR}/cc_tools
|
|
CRTS_CFLAGS= -DCRTSTUFFS_O -DSHARED ${PICFLAG}
|
|
|
|
.if ${TARGET_CPUARCH} == "arm"
|
|
CFLAGS+= -DTARGET_ARM_EABI
|
|
.endif
|
|
|
|
.if ${MACHINE_CPUARCH} == "powerpc"
|
|
TGTOBJS= crtsavres.o
|
|
SRCS+= crtsavres.asm
|
|
.endif
|
|
.if ${MACHINE_CPUARCH} == "sparc64"
|
|
TGTOBJS= crtfastmath.o
|
|
SRCS+= crtfastmath.c
|
|
.endif
|
|
BEGINSRC?= crtstuff.c
|
|
ENDSRC?= crtstuff.c
|
|
|
|
FILES= ${OBJS} ${SOBJS} ${TGTOBJS}
|
|
FILESMODE= ${LIBMODE}
|
|
FILESOWN= ${LIBOWN}
|
|
FILESGRP= ${LIBGRP}
|
|
FILESDIR= ${LIBDIR}
|
|
# These FILES qualify as libraries for the purpose of LIBRARIES_ONLY.
|
|
.undef LIBRARIES_ONLY
|
|
|
|
${OBJS} ${SOBJS}: ${SRCS:M*.h}
|
|
|
|
CLEANFILES= ${OBJS} ${SOBJS} ${TGTOBJS}
|
|
|
|
crtbegin.o: ${BEGINSRC}
|
|
${CC} ${CFLAGS} -g0 -DCRT_BEGIN \
|
|
-c -o ${.TARGET} ${.ALLSRC:N*.h}
|
|
|
|
crtbeginT.o: ${BEGINSRC}
|
|
${CC} ${CFLAGS} -g0 -DCRT_BEGIN -DCRTSTUFFT_O \
|
|
-c -o ${.TARGET} ${.ALLSRC:N*.h}
|
|
|
|
crtbeginS.o: ${BEGINSRC}
|
|
${CC} ${CFLAGS} -g0 -DCRT_BEGIN ${CRTS_CFLAGS} \
|
|
-c -o ${.TARGET} ${.ALLSRC:N*.h}
|
|
|
|
crtend.o: ${ENDSRC}
|
|
${CC} ${CFLAGS} -g0 -DCRT_END \
|
|
-c -o ${.TARGET} ${.ALLSRC:N*.h}
|
|
|
|
crtendS.o: ${ENDSRC}
|
|
${CC} ${CFLAGS} -g0 -DCRT_END ${CRTS_CFLAGS} \
|
|
-c -o ${.TARGET} ${.ALLSRC:N*.h}
|
|
|
|
CLEANFILES+= tm.h tconfig.h options.h optionlist cs-tconfig.h cs-tm.h
|
|
tm.h tconfig.h options.h: ${CCDIR}/cc_tools/Makefile .PHONY
|
|
(cd ${.CURDIR}; ${MAKE} -f ${.ALLSRC} MFILE=${.ALLSRC} GCCDIR=${GCCDIR} ${.TARGET})
|
|
|
|
.include <bsd.lib.mk>
|