Import Geant4 8.3.0 source tree
This commit is contained in:
+8
-1
@@ -1,4 +1,4 @@
|
||||
$Id: History,v 1.288 2006/11/30 15:47:16 gcosmo Exp $
|
||||
$Id: History,v 1.289 2007/02/28 15:35:31 gcosmo Exp $
|
||||
-------------------------------------------------------------------
|
||||
|
||||
=========================================================
|
||||
@@ -16,6 +16,13 @@ committal in the CVS repository !
|
||||
* Reverse chronological order (last date on top), please *
|
||||
----------------------------------------------------------
|
||||
|
||||
28th February 2007 Gabriele Cosmo (config-V08-02-00)
|
||||
- Protected generation of dependencies using internal 'make' variable
|
||||
MAKECMDGOALS in binmake.gmk and common.gmk, following suggestion made
|
||||
in problem report #930.
|
||||
This protection resolves the problem of generation of dependencies when
|
||||
issueing the 'clean' target.
|
||||
|
||||
3rd November 2006 Gunter Folger (config-V08-01-07)
|
||||
- architecture.gmk: added G4LIB_BUILD_LISTS with default value 1 to build physics lists.
|
||||
- binmake.gmk: added physics lists include directories to INCFLAGS.
|
||||
|
||||
+3
-1
@@ -1,4 +1,4 @@
|
||||
# $Id: binmake.gmk,v 1.116 2006/11/08 16:52:19 gunter Exp $
|
||||
# $Id: binmake.gmk,v 1.117 2007/02/28 15:35:07 gcosmo Exp $
|
||||
# ----------------------------------------------------------
|
||||
# Script defining rules and paths for making binaries.
|
||||
# First implementation: Gabriele Cosmo, 25/06/1998.
|
||||
@@ -401,8 +401,10 @@ $(G4TMPDIR)/exe/$(G4TARGET).d: $(G4TARGET).cc
|
||||
sed 's!$(G4TARGET)\.$(TARGOBJEXT)!$(G4TMPDIR)/exe/& $@!' >$@;\
|
||||
[ -s $@ ] || rm -f $@
|
||||
ifneq ($(dependencies),)
|
||||
ifneq ($(MAKECMDGOALS),clean)
|
||||
-include $(dependencies)
|
||||
endif
|
||||
endif
|
||||
|
||||
clean::
|
||||
@echo Cleaning up ...
|
||||
|
||||
+3
-1
@@ -1,4 +1,4 @@
|
||||
# $Id: common.gmk,v 1.41 2005/12/07 09:41:54 gcosmo Exp $
|
||||
# $Id: common.gmk,v 1.42 2007/02/28 15:35:07 gcosmo Exp $
|
||||
# ----------------------------------------------------------------
|
||||
# Common part of GNUmakefile for libraries. John Allison, 5/7/95.
|
||||
# ----------------------------------------------------------------
|
||||
@@ -110,8 +110,10 @@ $(G4TMPDIR)/%.d: src/%.cc
|
||||
sed 's!$*\.o!$(G4TMPDIR)/& $@!' >$@;\
|
||||
[ -s $@ ] || rm -f $@
|
||||
ifneq ($(dependencies),)
|
||||
ifneq ($(MAKECMDGOALS),clean)
|
||||
-include $(dependencies)
|
||||
endif
|
||||
endif
|
||||
|
||||
#
|
||||
# Installation of include files
|
||||
|
||||
Reference in New Issue
Block a user