1 # https://www.gnu.org/software/emacs/manual/html_node/efaq/Installing-Emacs.html
4 SRC_DIR
:= emacs-
$(VERSION
)
5 SRC_TARBALL
:= $(SRC_DIR
).
tar.gz
7 .PHONY
: configure_build_install
8 configure_build_install
: data
/$(SRC_DIR
)
9 cd data
/$(SRC_DIR
) && .
/configure
10 cd data
/$(SRC_DIR
) && make
-j
$(shell nproc
)
11 cd data
/$(SRC_DIR
) && make
-j
$(shell nproc
) install
13 data
/$(SRC_DIR
): $(SRC_TARBALL
)
14 cd data
&& tar -vxzf
$(SRC_TARBALL
)
18 cd data
&& wget
-c https
://ftp.gnu.org
/pub
/gnu
/emacs
/$(SRC_TARBALL
)
This page took 0.071977 seconds and 4 git commands to generate.