forked from ALLPix/allpix
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile
36 lines (27 loc) · 814 Bytes
/
Makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
# --------------------------------------------------------------
# Makefile for examples module
# --------------------------------------------------------------
#export EUTELESCOPE=1
name = allpix
G4TARGET = $(name)
G4EXLIB = true
.PHONY: all
all: rootdict lib bin
rootdict: ./include/*.hh ./include/*.h
@echo "Generating dictionary $@..."
rootcint -v0 -f SelDict.cc -c -p -I./include \
AllPix_Hits_WriteToEntuple.h \
AllPix_Frames_WriteToEntuple.h allpix_dm.h \
AllPixDigitAnimation.hh LinkDef.h
@mv SelDict.cc ./src
# @mv SelDict.h ./include/
# the geant4 makefile will compile the dictionary
cleanroot:
rm -f src/SelDict.* include/SelDict.* SelDict.*
include $(G4INSTALL)/config/binmake.gmk
include ./flags.gmk
ifdef EUTELESCOPE
INCFLAGS += -D_EUTELESCOPE
else
INCFLAGS += -D_SINGLE
endif