]> AND Private Git Repository - snake_gpu.git/blob - makefile
Logo AND Algorithmique Numérique Distribuée

Private GIT Repository
Test diagonales naif
[snake_gpu.git] / makefile
1 # chemin des librairies
2
3
4 PATH_GCC = $(PWD)
5
6 PATH_LIB = $(PATH_GCC)/lib/
7 PATH_SRC = $(PATH_GCC)/src/
8 PATH_EXEC = $(PATH_GCC)/exec/
9
10 # repertoires pour les headers
11 PATH_INCLUDE = $(PATH_GCC)/src/
12
13 # compilateur
14 CC = gcc
15 NVCC = nvcc
16 CXX = g++
17
18 # options de compilation
19 # -Wall : Warning all
20 # -g : debug (ex : gdb sas)
21 # -pg : profile memoire et cpu pour chaque fonctions (ex : gprof name | less)
22 # -O3 : optimisation code -O0 (rien) ~ -O3 (maxi)
23 # -fstrict-aliasing : aligne  la memoire sur 32 bits
24
25 # gcc
26 OPTION_CC1 = -Wall -O3 -static #-pg #-g -fprofile-arcs -ftest-coverage
27 OPTION_CC2 =  $(OPTION_CC1)  -funroll-all-loops -fstrict-aliasing 
28
29 OPTION_CC = $(OPTION_CC2) -I$(PATH_INCLUDE) -I$(PATH_SRC)
30
31
32 # librairies pour la compilation
33 LIB_CC = -lm 
34 LIBSNV = -L/cm/shared/apps/cuda31/toolkit/3.1/lib64 -lcuda -lcudart
35
36 # sources utiles a la compilation des main
37 SRCS =  lib_alloc.c lib_images.c lib_math.c lib_snake_common.c lib_contour.c
38
39 SRCS_NV =  lib_test_gpu.cu lib_snake_2_gpu.cu lib_gpu.cu snake2D_gpu.cu
40
41 OBJS = $(SRCS:%.c=$(PATH_LIB)%.o) $(SRCS_NV:%.cu=$(PATH_LIB)%.o)
42
43 # dependances supplementaires
44 DEPS =  $(PATH_SRC)/constantes.h $(PATH_SRC)/structures.h $(PATH_GCC)/makefile
45 help :
46         @echo "cibles : snake2D doc clean"
47
48 all : snake2D doc
49 clean :
50         -rm -f $(PATH_LIB)*.o
51         -rm -rf $(PATH_GCC)/docs/
52
53
54 # regle pour les .o
55 # --use_fast_math
56 # --ptxas-options=-v
57 $(PATH_LIB)%_gpu.o :    $(PATH_SRC)%_gpu.cu
58                         $(NVCC) -arch=sm_13 --use_fast_math -c $< -o $@ 
59
60 $(PATH_LIB)%.o :        $(PATH_SRC)%.c $(DEPS)
61                         $(CC) $(OPTION_CC) -c $< -o $@
62
63 # regle pour l'exec
64
65 $(PATH_EXEC)SNAKE2D :   $(PATH_SRC)snake2D_gpu.cu $(OBJS) $(DEPS)
66                         $(CXX) $(OBJS) $(LIBSNV) \
67                         -o $(PATH_EXEC)SNAKE2D
68
69 # compilation main
70
71 snake2D :       $(PATH_EXEC)SNAKE2D
72                 @echo ""
73                 @echo "***** fin compil snake2D *****"
74                 @echo ""
75
76 # generation des doc
77
78 doc :           
79                 doxygen doxygen.conf
80                 @echo ""
81                 @echo "***** fin compil doc *****"
82                 @echo ""