65f5251eae
were vaguely useful back when we didn't run make -j, but now you end up with a single line "done" every so often, with no idea what it is for. very few other targets claim they're done so just remove these.
88 lines
2.8 KiB
Makefile
88 lines
2.8 KiB
Makefile
# $NetBSD: Makefile.inc,v 1.3 2016/03/22 08:25:23 mrg Exp $
|
|
#
|
|
# Configuration variables (default values are below):
|
|
#
|
|
# S must be set to the top of the 'sys' tree.
|
|
# GNUEFIDST may be set to the location of the directory where library
|
|
# objects are to be built. Defaults to ${.OBJDIR}/lib/gnuefi.
|
|
# GNUEFI_AS may be set to 'obj' to build a object from the library's
|
|
# object files. (Otherwise, a library will be built.)
|
|
# Defaults to 'library'.
|
|
# GNUEFIMISCCPPFLAGS
|
|
# Miscellaneous cpp flags to be passed to the library's Makefile
|
|
# when building.
|
|
# GNUEFIMISCMAKEFLAGS
|
|
# Miscellaneous flags to be passed to the library's Makefile when
|
|
# building. See library's Makefile for more details about
|
|
# supported flags and their default values.
|
|
|
|
# Default values:
|
|
GNUEFIDST?= ${.OBJDIR}/lib/gnuefi
|
|
GNUEFI_AS?= library
|
|
GNUEFIDOTDIR?= ../../.
|
|
|
|
CWARNFLAGS.clang+= -Wno-format-extra-args
|
|
|
|
GNUEFIDIR= ${S:S@^.@${GNUEFIDOTDIR}@:Q}/lib/libgnuefi
|
|
.if (${GNUEFI_AS} == "obj")
|
|
GNUEFILIB= ${GNUEFIDST}/libgnuefi.o
|
|
GNUEFILIB_PROF= ${GNUEFIDST}/libgnuefi.po
|
|
.else
|
|
GNUEFILIB= ${GNUEFIDST}/libgnuefi.a
|
|
GNUEFILIB_PROF= ${GNUEFIDST}/libgnuefi_p.a
|
|
.endif
|
|
ZLIBSRCDIR:= ${.PARSEDIR}/../../../common/dist/zlib
|
|
GNUEFIMISCCPPFLAGS+=-I${ZLIBSRCDIR}
|
|
|
|
GNUEFIMAKE= \
|
|
cd ${GNUEFIDST} && ${MAKE} -f ${GNUEFIDIR:Q}/Makefile \
|
|
GNUEFIDIR=${GNUEFIDIR:Q} \
|
|
CC=${CC:Q} CFLAGS=${CFLAGS:Q} CPUFLAGS= \
|
|
AS=${AS:Q} AFLAGS=${AFLAGS:Q} \
|
|
LORDER=${LORDER:Q} \
|
|
TSORT=${TSORT:Q} \
|
|
LD=${LD:Q} STRIP=${STRIP:Q} \
|
|
AR=${AR:Q} NM=${NM:Q} \
|
|
RANLIB=${RANLIB:Q} SIZE=${SIZE:Q} \
|
|
MACHINE=${MACHINE} MACHINE_ARCH=${MACHINE_ARCH:Q} \
|
|
GNUEFICPPFLAGS=${CPPFLAGS:S@^-I.@-I${GNUEFIDOTDIR}@g:Q} \
|
|
GNUEFIMISCCPPFLAGS=${GNUEFIMISCCPPFLAGS:Q} \
|
|
${GNUEFIMISCMAKEFLAGS}
|
|
|
|
${GNUEFILIB}: .NOTMAIN .MAKE __always_make_gnuefilib
|
|
@echo making sure the gnuefi library is up to date...
|
|
.if (${GNUEFI_AS} == "library")
|
|
@${GNUEFIMAKE} libgnuefi.a
|
|
.else
|
|
@${GNUEFIMAKE} libgnuefi.o
|
|
.endif
|
|
|
|
${GNUEFILIB_PROF}: .NOTMAIN .MAKE __always_make_gnuefilib
|
|
@echo making sure the profiled gnuefi library is up to date...
|
|
.if (${GNUEFI_AS} == "library")
|
|
@${GNUEFIMAKE} libgnuefi_p.a
|
|
.else
|
|
@${GNUEFIMAKE} libgnuefi.po
|
|
.endif
|
|
|
|
clean: .NOTMAIN cleangnuefilib
|
|
cleangnuefilib: .NOTMAIN
|
|
@echo cleaning the gnuefi library objects
|
|
@if [ -d "${GNUEFIDST}" ]; then ${GNUEFIMAKE} clean; fi
|
|
|
|
cleandir distclean: .NOTMAIN cleandirgnuefilib
|
|
cleandirgnuefilib: .NOTMAIN
|
|
@echo cleandiring the gnuefi library objects
|
|
@if [ -d "${GNUEFIDST}" ]; then ${GNUEFIMAKE} cleandir; fi
|
|
|
|
dependall depend: .NOTMAIN dependgnuefilib
|
|
dependgnuefilib: .NOTMAIN .MAKE __always_make_gnuefilib
|
|
@echo depending the gnuefi library objects
|
|
@${GNUEFIMAKE} depend
|
|
|
|
__always_make_gnuefilib: .NOTMAIN
|
|
@mkdir -p ${GNUEFIDST}
|
|
|
|
.PHONY: __always_make_gnuefilib
|
|
.PHONY: cleangnuefilib cleandirgnuefilib dependgnuefilib
|