source: lmdz_wrf/WRFV3/tools/Makefile @ 1

Last change on this file since 1 was 1, checked in by lfita, 10 years ago
  • -- --- Opening of the WRF+LMDZ coupling repository --- -- -

WRF: version v3.3
LMDZ: version v1818

More details in:

File size: 1.5 KB
Line 
1.SUFFIXES: .c .o
2
3CC_TOOLS = cc
4CFLAGS = #-ansi
5LDFLAGS =
6DEBUG = -g
7OBJ = registry.o my_strtok.o reg_parse.o data.o type.o misc.o \
8      gen_defs.o gen_allocs.o gen_mod_state_descr.o gen_scalar_indices.o \
9      gen_args.o gen_config.o sym.o symtab_gen.o \
10      gen_model_data_ord.o gen_interp.o gen_comms.o gen_scalar_derefs.o set_dim_strs.o gen_wrf_io.o\
11      gen_streams.o
12
13registry : $(OBJ) standard.exe
14        $(CC_TOOLS) -o registry $(DEBUG) $(LDFLAGS) $(OBJ)
15
16standard.exe : standard.o
17        $(CC_TOOLS) -o standard.exe $(DEBUG) $(LDFLAGS) standard.o
18
19.c.o :
20        $(CC_TOOLS) $(CFLAGS) -c $(DEBUG) $<
21
22clean:
23        /bin/rm -f $(OBJ) gen_comms.c standard.o
24
25gen_comms.c : gen_comms.stub
26        /bin/cp gen_comms.stub gen_comms.c
27
28# regenerate this list with "makedepend -Y *.c"
29
30# DO NOT DELETE THIS LINE -- make depend depends on it.
31
32data.o: registry.h protos.h data.h
33gen_allocs.o: protos.h registry.h data.h
34gen_args.o: protos.h registry.h data.h
35gen_scalar_derefs.o: protos.h registry.h data.h
36gen_config.o: protos.h registry.h data.h
37gen_defs.o: protos.h registry.h data.h
38gen_mod_state_descr.o: protos.h registry.h data.h
39gen_model_data_ord.o: protos.h registry.h data.h
40gen_scalar_indices.o: protos.h registry.h data.h
41gen_wrf_io.o: protos.h registry.h data.h
42misc.o: protos.h registry.h data.h
43my_strtok.o: registry.h protos.h data.h
44reg_parse.o: registry.h protos.h data.h
45registry.o: protos.h registry.h data.h
46sym.o: sym.h
47type.o: registry.h protos.h data.h
48gen_interp.o: registry.h protos.h data.h
49gen_streams.o: registry.h protos.h data.h
Note: See TracBrowser for help on using the repository browser.