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