Files
geant4/environments/g4py/source/boost/GNUmakefile
T
2016-06-10 11:51:14 +02:00

18 lines
605 B
Makefile

# $Id: GNUmakefile 76884 2013-11-18 12:54:03Z gcosmo $
# ===========================================================
# Makefile for building Geant4Py modules
# ===========================================================
include ../../config/config.gmk
.PHONY: install
install:
@echo ... intall headers into $(Q_INCDIR)/boost
@if [ ! -d $(Q_INCDIR)/boost ]; then \
install -d $(Q_INCDIR)/boost; fi
@if [ ! -d $(Q_INCDIR)/boost/detail ]; then \
install -d $(Q_INCDIR)/boost/detail; fi
@install -m 644 *.hpp *.hh $(Q_INCDIR)/boost
@install -m 644 detail/*.hpp $(Q_INCDIR)/boost/detail