48 lines
1.6 KiB
Makefile
48 lines
1.6 KiB
Makefile
# $Id: GNUmakefile,v 1.3 2000/10/31 10:34:39 flei Exp $
|
|
# ------------------------------------------------------------
|
|
# GNUmakefile for events library. Makoto Asai, 5/9/95.
|
|
# ------------------------------------------------------------
|
|
|
|
name := G4event
|
|
|
|
ifndef G4INSTALL
|
|
G4INSTALL = ../..
|
|
endif
|
|
|
|
include $(G4INSTALL)/config/architecture.gmk
|
|
|
|
CPPFLAGS += \
|
|
-I$(G4BASE)/global/management/include \
|
|
-I$(G4BASE)/global/HEPRandom/include \
|
|
-I$(G4BASE)/global/HEPGeometry/include \
|
|
-I$(G4BASE)/global/HEPNumerics/include \
|
|
-I$(G4BASE)/track/include \
|
|
-I$(G4BASE)/tracking/include \
|
|
-I$(G4BASE)/processes/management/include \
|
|
-I$(G4BASE)/processes/electromagnetic/utils/include \
|
|
-I$(G4BASE)/particles/management/include \
|
|
-I$(G4BASE)/particles/leptons/include \
|
|
-I$(G4BASE)/particles/leptons/include \
|
|
-I$(G4BASE)/particles/bosons/include \
|
|
-I$(G4BASE)/particles/hadrons/barions/include \
|
|
-I$(G4BASE)/particles/hadrons/ions/include \
|
|
-I$(G4BASE)/particles/hadrons/mesons/include \
|
|
-I$(G4BASE)/materials/include \
|
|
-I$(G4BASE)/geometry/management/include \
|
|
-I$(G4BASE)/geometry/volumes/include \
|
|
-I$(G4BASE)/digits+hits/detector/include \
|
|
-I$(G4BASE)/digits+hits/hits/include \
|
|
-I$(G4BASE)/digits+hits/digits/include \
|
|
-I$(G4BASE)/intercoms/include
|
|
|
|
ifdef G4_STORE_TRAJECTORY
|
|
CPPFLAGS += -DG4_STORE_TRAJECTORY
|
|
endif
|
|
|
|
include $(G4INSTALL)/config/common.gmk
|
|
|
|
.PHONY: global
|
|
|
|
global: lib
|
|
|