mirror of
https://github.com/wahyd4/gvm.git
synced 2026-08-09 04:46:19 +10:00
This commit introduces generated overlay filesystem support for
${PATH}, ${LD_LIBRARY_PATH}, and ${PKG_CONFIG_PATH} as well as
includes a working example of how to take advantage of this support
when integrating with vendored code.
14 lines
268 B
Makefile
14 lines
268 B
Makefile
EXTRA_INSTALL = scripts/
|
|
|
|
gvmdir = $(bindir)/
|
|
gvm_SCRIPTS = bin/gvm
|
|
install_dir = $(prefix)/gvm
|
|
|
|
install-exec-hook:
|
|
(mkdir -p $(install_dir) ; \
|
|
cp -rf . $(install_dir))
|
|
|
|
#install-data-hook:
|
|
# (mkdir -p $(help_dir) ; \
|
|
# cp -f *_help.txt $(help_dir))
|