Files
geant4/environments/g4py/config/site-install.gmk
T
2016-06-09 16:46:55 +02:00

17 lines
492 B
Plaintext

# $Id: site-install.gmk,v 1.5 2008-12-01 06:49:05 kmura Exp $
# ===========================================================
# 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)