003 File Manager
Current Path:
/usr/src/release
usr
/
src
/
release
/
📁
..
📄
Makefile
(10.49 KB)
📄
Makefile.azure
(1.32 KB)
📄
Makefile.ec2
(2.19 KB)
📄
Makefile.gce
(2.09 KB)
📄
Makefile.inc1
(1.01 KB)
📄
Makefile.mirrors
(7.86 KB)
📄
Makefile.vagrant
(5.65 KB)
📄
Makefile.vm
(5.2 KB)
📁
amd64
📁
arm
📁
arm64
📁
i386
📁
packages
📁
pkg_repos
📁
powerpc
📄
rc.local
(2.56 KB)
📄
release.conf.sample
(3.67 KB)
📄
release.sh
(16.56 KB)
📁
riscv
📁
scripts
📁
tools
Editing: Makefile.inc1
# # $FreeBSD$ # # Figure out where the git binary is. .for _P in /usr/bin /usr/local/bin . if !defined(GIT_CMD) || empty(GIT_CMD) . if exists(${_P}/git) GIT_CMD= ${_P}/git . endif . endif .endfor .if !empty(GIT_CMD) && exists(${GIT_CMD}) # Set the git branch and hash to export where needed. . if !defined(GITBRANCH) || empty(GITBRANCH) GITBRANCH!= ${GIT_CMD} -C ${.CURDIR} rev-parse --abbrev-ref HEAD 2>/dev/null | sed -e 's/\^\///' . export GITBRANCH . endif . if !defined(GITREV) || empty(GITREV) GITREV!= ${GIT_CMD} -C ${.CURDIR} rev-parse --verify --short HEAD 2>/dev/null || true . export GITREV . endif . if !defined(GITCOUNT) || empty(GITCOUNT) GITCOUNT!= ${GIT_CMD} -C ${.CURDIR} rev-list --count HEAD 2>/dev/null || true . export GITCOUNT . endif .else GITBRANCH= nullbranch GITREV= nullhash GITCOUNT= nullcount . export GITBRANCH . export GITREV . export GITCOUNT .endif # Set the build date, primarily for snapshot builds. .if !defined(BUILDDATE) || empty(BUILDDATE) BUILDDATE!= date +%Y%m%d .export BUILDDATE .endif
Upload File
Create Folder