27 lines
683 B
Makefile
27 lines
683 B
Makefile
# $Id: GNUmakefile,v 1.9 2004/12/16 09:15:19 gcosmo Exp $
|
|
# --------------------------------------------------------------
|
|
# GNUmakefile for examples module. Gabriele Cosmo, 06/04/98.
|
|
# --------------------------------------------------------------
|
|
|
|
name := exampleN04
|
|
G4TARGET := $(name)
|
|
G4EXLIB := true
|
|
|
|
ifndef G4INSTALL
|
|
G4INSTALL = ../../..
|
|
endif
|
|
|
|
include hadronic_lists.gmk
|
|
|
|
.PHONY: all
|
|
all: had_list lib bin
|
|
|
|
had_list:
|
|
@echo "This example uses the QGSP 'educated guess physics list'"
|
|
@echo "(see $(G4INSTALL)/physics_lists/hadronic)."
|
|
@echo "The hadronic physics lists should be compiled before"
|
|
@echo "compiling this example."
|
|
|
|
include $(G4INSTALL)/config/binmake.gmk
|
|
|