1 |
SHELL = /bin/sh |
2 |
# decide on compiler and flags depending on host |
3 |
CC = g++ |
4 |
CFLAGS=-fPIC -pthread |
5 |
|
6 |
CROOT= root -l -b -q |
7 |
#ALL_CFLAGS = -Wall -g $(CFLAGS) $(PAM_BIT) |
8 |
ALL_CFLAGS = -Wall -O2 $(CFLAGS) $(PAM_BIT) -lgfortran |
9 |
|
10 |
|
11 |
LIBS = `root-config --cflags --glibs` $(PAM_LIB)/libyoda.so $(PAM_LIB)/libDarthVader.so $(PAM_LIB)/libPamLevel2.so $(PAM_LIB)/libToFLevel2.so $(PAM_LIB)/libTrkLevel2.so $(PAM_LIB)/libGLTables.so |
12 |
INCS =-I `root-config --incdir` -I$(PAM_INC) -I$(PAM_INC)/yoda/ -I./ |
13 |
EXE = ToFreproc.exe |
14 |
# pattern rule to compile object files from C files |
15 |
# might not work with make programs other than GNU make |
16 |
%.o : %.cpp Makefile |
17 |
$(CC) $(ALL_CFLAGS) $(INCS) -c $< -o $@ |
18 |
|
19 |
all: $(EXE) |
20 |
|
21 |
install: |
22 |
cp ToFreproc ${PAM_BIN}/ |
23 |
|
24 |
OBJS1 = ToFreproc.o |
25 |
ToFreproc.exe: $(OBJS1) Makefile |
26 |
$(CC) $(ALL_CFLAGS) $(INCS) $(OBJS1) $(LIBS) -o ToFreproc |
27 |
|
28 |
.PHONY : clean |
29 |
clean: |
30 |
rm -f *.o *.so *.exe ToFreproc |