17 lines
490 B
Plaintext
17 lines
490 B
Plaintext
# $Id: site-install.gmk 66892 2013-01-17 10:57:59Z gunter $
|
|
# ===========================================================
|
|
# Script for installing modules
|
|
# ===========================================================
|
|
|
|
ifndef PACKAGE
|
|
PACKAGE := .
|
|
endif
|
|
|
|
install_dir := $(Q_LIBDIR)/g4py/$(PACKAGE)
|
|
|
|
install: $(module_name)
|
|
@echo ... intall $(module_name) into $(install_dir)
|
|
@if [ ! -d $(install_dir) ]; then install -d $(install_dir); fi
|
|
@install -m 755 $(module_name) $(install_dir)
|
|
|