source: TOOLS/PACK_IPSL/Makefile @ 1854

Last change on this file since 1854 was 1853, checked in by gpincka, 12 years ago

principalement : enchainement du launcher parallele + gestion reprise du code parallele

File size: 330 bytes
Line 
1
2MPICC=mpicc
3MPICC_OPTS=-g
4# do not forget "module load libccc_user" before
5ifneq ($(CCC_LIBCCC_USER_LDFLAGS),)
6LIBS=$(CCC_LIBCCC_USER_LDFLAGS) 
7MPICC_OPTS+=-D __HAVE_LIBCCC_USER__ -I$(CCC_LIBCCC_USER_INC_DIR)
8endif
9
10.PHONY: all
11all : glost_launch
12
13%:%.c
14        $(MPICC) $(MPICC_OPTS) -o $@ $< $(LIBS)
15
16clean:
17        $(RM) glost_launch
18
19
20
21
22
23
Note: See TracBrowser for help on using the repository browser.