Files
geant4/environments/g4py/config/site-install.gmk
T
2016-06-09 14:44:26 +02:00

17 lines
487 B
Plaintext

# $Id: site-install.gmk,v 1.4 2006/06/14 08:23:12 kmura Exp $
# ===========================================================
# Script for installing modules
# ===========================================================
ifndef PACKAGE
PACKAGE := .
endif
install_dir := $(Q_LIBDIR)/$(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)