mirror of
https://github.com/freebsd/freebsd-src
synced 2024-11-05 18:22:52 +00:00
e9ac41698b
Some checks are pending
Cross-build Kernel / ${{ matrix.target_arch }} ${{ matrix.os }} (${{ matrix.compiler }}) (clang-14, /usr/lib/llvm-14/bin, ubuntu-22.04, bmake libarchive-dev clang-14 lld-14, arm64, aarch64) (push) Waiting to run
Cross-build Kernel / ${{ matrix.target_arch }} ${{ matrix.os }} (${{ matrix.compiler }}) (clang-14, /usr/lib/llvm-14/bin, ubuntu-22.04, bmake libarchive-dev clang-14 lld-14, amd64, amd64) (push) Waiting to run
Cross-build Kernel / ${{ matrix.target_arch }} ${{ matrix.os }} (${{ matrix.compiler }}) (clang-13, /opt/homebrew/opt/llvm@13/bin, macos-latest, bmake libarchive llvm@13, arm64, aarch64) (push) Waiting to run
Cross-build Kernel / ${{ matrix.target_arch }} ${{ matrix.os }} (${{ matrix.compiler }}) (clang-13, /opt/homebrew/opt/llvm@13/bin, macos-latest, bmake libarchive llvm@13, amd64, amd64) (push) Waiting to run
Cross-build Kernel / ${{ matrix.target_arch }} ${{ matrix.os }} (${{ matrix.compiler }}) (clang-12, /usr/lib/llvm-12/bin, ubuntu-20.04, bmake libarchive-dev clang-12 lld-12, arm64, aarch64) (push) Waiting to run
Cross-build Kernel / ${{ matrix.target_arch }} ${{ matrix.os }} (${{ matrix.compiler }}) (clang-12, /usr/lib/llvm-12/bin, ubuntu-20.04, bmake libarchive-dev clang-12 lld-12, amd64, amd64) (push) Waiting to run
This is a residual of the $FreeBSD$ removal. MFC After: 3 days (though I'll just run the command on the branches) Sponsored by: Netflix
31 lines
482 B
Makefile
31 lines
482 B
Makefile
.if defined(DEBUG)
|
|
DEBUG_FLAGS+= -D_DEBUG -g
|
|
.endif
|
|
|
|
.if defined(DEBUG2G)
|
|
DEBUG_FLAGS+= -D_DEBUG2G -g
|
|
.endif
|
|
|
|
.if defined(DEBUG3G)
|
|
DEBUG_FLAGS+= -D_DEBUG3G -g
|
|
.endif
|
|
|
|
.if defined(DEBUG_MSG)
|
|
DEBUG_FLAGS+= -D_DEBUG_MSG
|
|
.endif
|
|
|
|
.if defined(F4BVERS)
|
|
DEBUG_FLAGS+= -DFUSE4BSD_VERSION="\"${F4BVERS}\""
|
|
.endif
|
|
|
|
PACKAGE=runtime
|
|
PROG= mount_fusefs
|
|
SRCS= mount_fusefs.c getmntopts.c
|
|
MAN8= mount_fusefs.8
|
|
|
|
MOUNT= ${.CURDIR:H}/mount
|
|
CFLAGS+= -I${MOUNT}
|
|
|
|
.PATH: ${MOUNT}
|
|
|
|
.include <bsd.prog.mk>
|