source: CPL/oasis3-mct/branches/OASIS3-MCT_5.0_branch/pyoasis/examples/6-apple_and_orange/C/Makefile @ 6331

Last change on this file since 6331 was 6331, checked in by aclsce, 15 months ago

Moved oasis-mct_5.0 in oasis3-mct/branches directory.

File size: 512 bytes
Line 
1include ../../../../util/make_dir/make.inc
2CFLAGS=$(CCFLAGS) -L$(ARCHDIR)/lib
3
4all: sender-apple receiver-orange
5
6sender-apple: sender-apple.c
7        ${CC} sender-apple.c ${CFLAGS} -o sender-apple -loasis.cbind -lpsmile.MPI1 -lscrip -lmct -lmpeu $(F2C_LDFLAGS) $(NETCDF_LIBRARY)
8
9receiver-orange: receiver-orange.c
10        ${CC} receiver-orange.c ${CFLAGS} -o receiver-orange -loasis.cbind -lpsmile.MPI1 -lscrip -lmct -lmpeu $(F2C_LDFLAGS) $(NETCDF_LIBRARY)
11
12clean:
13        rm -f sender-apple receiver-orange
14        rm -f *~
15        rm -fr work
Note: See TracBrowser for help on using the repository browser.